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!)
A349893 a(n) = Sum_{k=0..n} k^(k*(n-k)). 8
1, 2, 3, 7, 46, 1052, 88603, 27121965, 37004504306, 198705527223758, 5595513387083114571, 686714367475480207331583, 468422339816915120237104999422, 1664212116512828935888786624225704856, 31295654819650678010096952493864470025103251 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: Sum_{k>=0} x^k/(1 - k^k * x).
log(a(n)) ~ n^2*log(n)/4 * (1 - log(2)/log(n) + 1/(4*log(n)^2)). - Vaclav Kotesovec, Dec 05 2021
MATHEMATICA
Table[1 + Sum[k^(k*(n - k)), {k, 1, n}], {n, 0, 16}] (* Vaclav Kotesovec, Dec 05 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, k^(k*(n-k)));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, x^k/(1-k^k*x)))
CROSSREFS
Sequence in context: A032053 A343522 A086542 * A058181 A198959 A000231
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 04 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 May 7 07:34 EDT 2024. Contains 372300 sequences. (Running on oeis4.)