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

A360887
G.f. satisfies A(x) = 1 + x * (1 + x)^2 * A(x * (1 + x)).
4
1, 1, 3, 7, 22, 76, 290, 1225, 5616, 27758, 147050, 829926, 4966258, 31382572, 208676004, 1455540594, 10620614461, 80869622604, 641177678068, 5282866462839, 45152445030267, 399673570426188, 3658433105500600, 34582526451125235, 337165886689229224
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n+1-k,k) * a(n-1-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, binomial(i+1-j, j)*v[i-j])); v;
CROSSREFS
Sequence in context: A181769 A354771 A075214 * A070766 A111772 A233005
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 25 2023
STATUS
approved