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!)
A261053 Expansion of Product_{k>=1} (1+x^k)^(k^k). 7

%I #18 Sep 08 2022 08:46:13

%S 1,1,4,31,289,3495,51268,891152,17926913,409907600,10499834497,

%T 297793199060,9262502810645,313457634240463,11464902463397642,

%U 450646709610954343,18943070964019019671,847932498252050293971,40266255926484893366914,2021845081107882645459639

%N Expansion of Product_{k>=1} (1+x^k)^(k^k).

%H Alois P. Heinz, <a href="/A261053/b261053.txt">Table of n, a(n) for n = 0..385</a>

%F a(n) ~ n^n * (1 + exp(-1)/n + (exp(-1)/2 + 4*exp(-2))/n^2).

%F G.f.: exp(Sum_{k>=1} ( Sum_{d|k} (-1)^(k/d+1)*d^(d+1) ) * x^k/k). - _Ilya Gutkovskiy_, Nov 08 2018

%p b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p add(binomial(i^i, j)*b(n-i*j, i-1), j=0..n/i)))

%p end:

%p a:= n-> b(n$2):

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Aug 08 2015

%t nmax=20; CoefficientList[Series[Product[(1+x^k)^(k^k),{k,1,nmax}],{x,0,nmax}],x]

%o (PARI) m=20; x='x+O('x^m); Vec(prod(k=1,m, (1+x^k)^(k^k))) \\ _G. C. Greubel_, Nov 08 2018

%o (Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!( (&*[(1+x^k)^(k^k): k in [1..(m+2)]]))); // _G. C. Greubel_, Nov 08 2018

%Y Cf. A023880, A261052, A026007, A027998, A248882, A102866, A256142.

%K nonn

%O 0,3

%A _Vaclav Kotesovec_, Aug 08 2015

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 July 4 05:14 EDT 2024. Contains 373986 sequences. (Running on oeis4.)