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

%I #5 Feb 07 2021 13:15:24

%S 1,0,10,10,55,100,265,560,1175,2420,4667,9000,16575,30180,53470,93152,

%T 159395,268190,444910,727360,1174563,1873320,2955010,4611960,7127305,

%U 10912244,16560430,24924550,37217620,55160650,81174270,118651560,172316445,248718830,356892660

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

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

%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, 10):

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

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

%Y Cf. A000700, A001488, A022605, A327388, A338463, A341236, A341241, A341243, A341244, A341245, A341246, A341247, A341251.

%K nonn

%O 10,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 September 2 15:48 EDT 2024. Contains 375613 sequences. (Running on oeis4.)