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!)
A355463 Expansion of Sum_{k>=0} (x/(1 - k^k * x))^k. 5
1, 1, 2, 10, 131, 5656, 869097, 490286392, 1264458639313, 12443651667592768, 681538604797281047489, 153070077563816488157872384, 205935348854901274982393017521537, 1352544986573612111579941739713633174912 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=1..n} k^(k*(n-k)) * binomial(n-1,k-1) for n > 0.
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n-1, k-1] * k^(k*(n-k)), {k, 1, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, Feb 16 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (x/(1-k^k*x))^k))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, k^(k*(n-k))*binomial(n-1, k-1)));
CROSSREFS
Sequence in context: A097928 A254431 A011838 * A336537 A118183 A134051
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 03 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 May 5 19:46 EDT 2024. Contains 372277 sequences. (Running on oeis4.)