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!)
A351812 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - 6*x)) / (1 - 6*x)^2. 2
1, 1, 13, 139, 1531, 19021, 271453, 4358179, 76896931, 1471496341, 30333401893, 670125430219, 15784342627531, 394467249489661, 10415430504486733, 289527454704656659, 8447556960083354131, 258008113711846390981, 8228947382557338981973, 273472796359924298018299 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k-1) * 6^(k-1) * a(n-k).
MATHEMATICA
nmax = 19; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - 6 x)]/(1 - 6 x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k - 1] 6^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 19}]
CROSSREFS
Sequence in context: A241631 A125425 A016145 * A300694 A193708 A195464
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 19 2022
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 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)