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!)
A361828 a(0) = 1; a(n+1) = Sum_{k=0..n} k^k * a(n-k). 0
1, 1, 2, 7, 40, 338, 3841, 54821, 939335, 18744832, 426390069, 10881017916, 307686450208, 9546443638409, 322375619648549, 11769010007246745, 461834905502223078, 19384809864763869231, 866564718107731746860, 41102477939620052536314 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: 1 / (1 - x * Sum_{k>=0} (k*x)^k).
a(n) ~ exp(-1) * n^(n-1). - Vaclav Kotesovec, Mar 26 2023
MATHEMATICA
nmax = 20; CoefficientList[Series[1/(1 - x - x*Sum[(k*x)^k, {k, 1, nmax}]), {x, 0, nmax}], x] (* Vaclav Kotesovec, Mar 26 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(1/(1-x*(sum(k=0, N, (k*x)^k))))
CROSSREFS
Sequence in context: A135082 A372348 A102317 * A031973 A274279 A319945
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Mar 26 2023
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 August 26 07:40 EDT 2024. Contains 375454 sequences. (Running on oeis4.)