login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A332885
a(0) = a(1) = 1; a(n) = a(n-2) + Sum_{k=0..n-2} binomial(n-2,k) * a(k).
0
1, 1, 2, 3, 7, 16, 43, 123, 384, 1283, 4575, 17294, 69013, 289613, 1273934, 5856811, 28070535, 139936316, 724141487, 3882776711, 21536499372, 123388080843, 729195916303, 4439611287834, 27814781772073, 179132776279001, 1184720299683034, 8038979166269203
OFFSET
0,3
FORMULA
G.f. A(x) satisfies: A(x) = 1 + x + x^2 * (A(x) + (1/(1 - x)) * A(x/(1 - x))).
MATHEMATICA
a[0] = a[1] = 1; a[n_] := a[n] = a[n - 2] + Sum[Binomial[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 27}]
nmax = 27; A[_] = 0; Do[A[x_] = 1 + x + x^2 (A[x] + (1/(1 - x)) A[x/(1 - x)]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 04 2020
STATUS
approved