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”).

A360888
G.f. satisfies A(x) = 1 + x * (1 + x^2)^2 * A(x * (1 + x^2)).
2
1, 1, 1, 3, 6, 11, 29, 71, 179, 505, 1405, 4128, 12639, 39268, 127059, 420281, 1423787, 4955200, 17579398, 63796635, 236161396, 890544028, 3422553065, 13377869976, 53184706291, 214870633711, 881485304157, 3671033616614, 15507956547021, 66429816610908
OFFSET
0,4
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor(n-1)/2} binomial(n+1-2*k,k) * a(n-1-2*k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, (i-1)\2, binomial(i+1-2*j, j)*v[i-2*j])); v;
CROSSREFS
Cf. A360885.
Sequence in context: A365294 A221182 A109781 * A101958 A153982 A119367
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 25 2023
STATUS
approved