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

%I #34 Sep 08 2022 08:46:10

%S 1,1,16,97,457,2297,11113,52049,235334,1039886,4497930,19074006,

%T 79418883,325184763,1311252535,5212704708,20449320159,79231806015,

%U 303428397505,1149325838320,4308477305997,15993198330782,58815616643170,214383601754107,774837953045873

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

%H Seiichi Manyama, <a href="/A248883/b248883.txt">Table of n, a(n) for n = 0..3360</a> (terms 0..1000 from Vaclav Kotesovec)

%H Vaclav Kotesovec, <a href="http://arxiv.org/abs/1509.08708">A method of finding the asymptotics of q-series based on the convolution of generating functions</a>, arXiv:1509.08708 [math.CO], Sep 30 2015, p. 22.

%F a(n) ~ 31^(1/12) * exp(1/5 * (31/7)^(1/6) * 6^(2/3) * Pi * n^(5/6)) / (2^(7/6) * 3^(2/3) * 7^(1/12) * n^(7/12)).

%F a(0) = 1, a(n) = (1/n)*Sum_{k=1..n} A284926(k)*a(n-k) for n > 0. - _Seiichi Manyama_, Apr 06 2017

%F G.f.: exp(Sum_{k>=1} (-1)^(k+1)*x^k*(1 + 11*x^k + 11*x^(2*k) + x^(3*k))/(k*(1 - x^k)^5)). - _Ilya Gutkovskiy_, May 30 2018

%p b:= proc(n) option remember; add(

%p (-1)^(n/d+1)*d^5, d=numtheory[divisors](n))

%p end:

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

%p add(b(k)*a(n-k), k=1..n)/n)

%p end:

%p seq(a(n), n=0..35); # _Alois P. Heinz_, Oct 16 2017

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

%o (PARI) x = 'x + O('x^50); Vec(prod(k=1, 50, (1 + x^k)^(k^4))) \\ _Indranil Ghosh_, Apr 06 2017

%o (Magma) m:=50; R<x>:=PowerSeriesRing(Rationals(), m); Coefficients(R! ( (&*[(1+x^k)^k^4: k in [1..m]]) )); // _G. C. Greubel_, Oct 31 2018

%Y Cf. A026007, A027998, A248882, A248884.

%Y Column k=4 of A284992.

%K nonn

%O 0,3

%A _Vaclav Kotesovec_, Mar 05 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 April 24 19:49 EDT 2024. Contains 371963 sequences. (Running on oeis4.)