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!)
A355114 Expansion of e.g.f. 6 / (7 - 6*x - exp(6*x)). 4
1, 2, 14, 156, 2256, 40416, 869040, 21817440, 626063616, 20210176512, 724888631808, 28599923045376, 1230970377166848, 57397448756994048, 2882187551571941376, 155065468075097960448, 8898907099302329647104, 542609247778976191610880, 35031706496702707368591360 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = n * a(n-1) + Sum_{k=1..n} binomial(n,k) * 6^(k-1) * a(n-k).
a(n) ~ n! / ((1 + LambertW(exp(7))) * ((7 - LambertW(exp(7)))/6)^(n+1)). - Vaclav Kotesovec, Jun 19 2022
MATHEMATICA
nmax = 18; CoefficientList[Series[6/(7 - 6 x - Exp[6 x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = n a[n - 1] + Sum[Binomial[n, k] 6^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 18}]
CROSSREFS
Sequence in context: A060193 A222200 A175564 * A332693 A196791 A349312
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 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 16 19:05 EDT 2024. Contains 371751 sequences. (Running on oeis4.)