OFFSET
1,2
LINKS
Indranil Ghosh, Table of n, a(n) for n = 1..1000
Joseph Myers, BMO 2008--2009 Round 1 Problem 1---Generalisation
FORMULA
a(n) = n*2^(2n-2) - 2(n-1)*binomial(2n-2,n-1).
EXAMPLE
a(3) = 3 * 2 ^ (2*3 - 2) - 2* (3 - 1) * binomial(2*3 - 2, 3 - 1) = 24. - Indranil Ghosh, Feb 19 2017
MATHEMATICA
Table[(n)2^(2n-2)-2(n-1) Binomial[2n-2, n-1], {n, 1, 22}] (* Indranil Ghosh, Feb 19 2017 *)
PROG
(Python)
import math
def C(n, r):
....f=math.factorial
....return f(n)/f(r)/f(n-r)
def A153337(n):
....return str(n*2**(2*n-2)-2*(n-1)*C(2*n-2, n-1)) # Indranil Ghosh, Feb 19 2017
(PARI) a(n) = n*2^(2*n-2) - 2*(n-1)*binomial(2*n-2, n-1); \\ Michel Marcus, Feb 19 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Joseph Myers, Dec 24 2008
STATUS
approved