login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A344489 a(n) = 1 + Sum_{k=0..n-2} binomial(n-1,k) * a(k). 5
1, 1, 2, 4, 11, 34, 122, 487, 2144, 10276, 53165, 294760, 1740950, 10899841, 72033470, 500664496, 3648211139, 27792215302, 220802394110, 1825428024367, 15672798590804, 139499676115312, 1285109772354941, 12235037442987028, 120220980122266010, 1217655627762149857 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x * A(x/(1 - x))) / (1 - x^2).
MATHEMATICA
a[n_] := a[n] = 1 + Sum[Binomial[n - 1, k] a[k] , {k, 0, n - 2}]; Table[a[n], {n, 0, 25}]
nmax = 25; A[_] = 0; Do[A[x_] = (1 + x A[x/(1 - x)])/(1 - x^2) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A089407 A289588 A362638 * A238425 A358075 A071115
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 21 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:35 EDT 2024. Contains 371967 sequences. (Running on oeis4.)