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

%I #12 Feb 20 2021 06:26:00

%S 1,0,4,4,10,16,26,44,63,100,144,212,297,420,584,796,1081,1452,1940,

%T 2556,3355,4372,5668,7288,9327,11892,15076,19012,23884,29904,37276,

%U 46284,57276,70680,86918,106528,130220,158784,193054,234076,283178,341824,411616,494512,592933

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

%H Alois P. Heinz, <a href="/A341243/b341243.txt">Table of n, a(n) for n = 4..10000</a>

%F G.f.: (-1 + Product_{k>=1} (1 + x^(2*k - 1)))^4.

%F a(n) ~ A112160(n). - _Vaclav Kotesovec_, Feb 20 2021

%p g:= proc(n) option remember; `if`(n=0, 1, add(add([0, d, -d, d]

%p [1+irem(d, 4)], d=numtheory[divisors](j))*g(n-j), j=1..n)/n)

%p end:

%p b:= proc(n, k) option remember; `if`(k<2, `if`(n=0, 1-k, g(n)),

%p (q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2)))

%p end:

%p a:= n-> b(n, 4):

%p seq(a(n), n=4..48); # _Alois P. Heinz_, Feb 07 2021

%t nmax = 48; CoefficientList[Series[(-1 + Product[1/(1 + (-x)^k), {k, 1, nmax}])^4, {x, 0, nmax}], x] // Drop[#, 4] &

%Y Cf. A000700, A001482, A022599, A112160, A327382, A338463, A341222, A341241, A341244, A341245, A341246, A341247, A341251.

%Y Column k=4 of A341279.

%K nonn

%O 4,3

%A _Ilya Gutkovskiy_, Feb 07 2021

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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)