OFFSET
0,2
COMMENTS
The odd-indexed terms of the sequence a(2*n-1) count the compositions of n+1, while the even-indexed terms a(2*n) count the total number of parts in the composition of n+1. Compare with A211228.
FORMULA
a(n) = sum {k = 0..n } f(n)/(f(k)*f(n-k)), where f(n) := (floor(n/2))!.
O.g.f.: (1+2*x-x^2-4*x^3)/(1-2*x^2)^2 = 1 + 2*x + 3*x^2 + 4*x^3 + 8*x^4 + ....
E.g.f.: cosh(sqrt(2)*x) + (4+x)/(2*sqrt(2))*sinh(sqrt(2)*x) = 1 + 2*x + 3*x^2/2! + 4*x^3/3! + 8*x^4/4! + .....
EXAMPLE
The four compositions of 3 are 1+1+1, 1+2, 2+1 and 3 having 8 parts in total. Hence a(3) = 4 and a(4) = 8.
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Apr 05 2012
STATUS
approved