A318155 Expansion of (1/(1 - x)) * Sum_{k>=0} x^(k*(2*k+1)) / Product_{j=1..2*k} (1 - x^j).
1, 1, 1, 2, 3, 5, 7, 10, 13, 17, 22, 28, 35, 44, 55, 68, 84, 103, 126, 153, 185, 223, 268, 320, 381, 452, 535, 631, 742, 870, 1018, 1188, 1383, 1607, 1863, 2155, 2489, 2869, 3301, 3792, 4348, 4978, 5691, 6496, 7404, 8428, 9580, 10875, 12330, 13962, 15791, 17840, 20131, 22691
Offset: 0
Keywords
Links
- Joerg Arndt, Matters Computational (The Fxtbook), section 16.4.2 "Partitions into distinct parts", page 350.
- Index entries for sequences related to partitions
Crossrefs
Programs
-
Mathematica
nmax = 53; CoefficientList[Series[1/(1 - x) Sum[x^(k (2 k + 1))/Product[(1 - x^j), {j, 1, 2 k}], {k, 0, nmax}], {x, 0, nmax}], x] nmax = 53; CoefficientList[Series[(QPochhammer[-x, x] + QPochhammer[x])/(2 (1 - x)), {x, 0, nmax}], x] Table[Length[Select[IntegerPartitions[2n+1],UnsameQ@@#&&OddQ[Length[#]]&&Count[#,?OddQ]==1&]],{n,0,15}] (* _Gus Wiseman, Jul 29 2021 *)
Formula
a(n) ~ 3^(1/4) * exp(Pi*sqrt(n/3)) / (4*Pi*n^(1/4)). - Vaclav Kotesovec, Aug 20 2018
Comments