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!)
A344840 a(0) = 1; a(n) = 5 * Sum_{k=1..n} binomial(n,k) * a(k-1). 6
1, 5, 35, 265, 2195, 19625, 187755, 1909185, 20521515, 232124745, 2752591475, 34108980105, 440444019835, 5912197332865, 82320781521195, 1186703083508025, 17680850448587155, 271845880552898985, 4307188044378111915, 70236616096770062945, 1177406236243423738475 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + 5 * x * A(x/(1 - x)) / (1 - x)^2.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 5 Sum[Binomial[n, k] a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 20}]
nmax = 20; A[_] = 0; Do[A[x_] = 1 + 5 x A[x/(1 - x)]/(1 - x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A104532 A292839 A180900 * A087630 A084135 A229111
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 07 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 June 26 14:04 EDT 2024. Contains 373718 sequences. (Running on oeis4.)