A294842
Expansion of Product_{k>=1} (1 + x^k)^(k^2*(k+1)/2).
Original entry on oeis.org
1, 1, 6, 24, 73, 238, 722, 2175, 6343, 18177, 50982, 140671, 382227, 1023623, 2706184, 7067324, 18250671, 46635309, 117997008, 295794098, 735030985, 1811435607, 4429226677, 10749552338, 25903858181, 62000039513, 147435739522, 348431110651, 818549931526, 1912010876019, 4441687009798
Offset: 0
- Vaclav Kotesovec, Table of n, a(n) for n = 0..2000
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
- N. J. A. Sloane, Transforms
- Eric Weisstein's World of Mathematics, Pentagonal Pyramidal Number
-
nmax = 30; CoefficientList[Series[Product[(1 + x^k)^(k^2 (k + 1)/2), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d^3 (d + 1)/2, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 30}]
A294843
Expansion of Product_{k>=1} (1 + x^k)^(k*(k+1)*(4*k-1)/6).
Original entry on oeis.org
1, 1, 7, 29, 93, 320, 1026, 3256, 9995, 30102, 88722, 257042, 732876, 2058370, 5703858, 15606076, 42203027, 112882223, 298849221, 783574536, 2035876825, 5244191462, 13398463986, 33967008194, 85476285603, 213583335753, 530099612487, 1307195997381, 3203555001240, 7804386224233
Offset: 0
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
- N. J. A. Sloane, Transforms
- Eric Weisstein's World of Mathematics, Hexagonal Pyramidal Number
-
nmax = 29; CoefficientList[Series[Product[(1 + x^k)^(k (k + 1)(4 k - 1)/6), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d^2 (d + 1)(4 d - 1)/6, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 29}]
A294844
Expansion of Product_{k>=1} (1 + x^k)^(k*(k+1)*(5*k-2)/6).
Original entry on oeis.org
1, 1, 8, 34, 114, 411, 1380, 4573, 14650, 45995, 141296, 426364, 1265443, 3698011, 10657134, 30312395, 85183177, 236681860, 650686538, 1771098691, 4775571943, 12762628737, 33821018537, 88909273699, 231945942992, 600700301298, 1544897610261, 3946762859175, 10018454809275, 25274880698255
Offset: 0
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]
- M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
- N. J. A. Sloane, Transforms
- Eric Weisstein's World of Mathematics, Heptagonal Pyramidal Number
-
nmax = 29; CoefficientList[Series[Product[(1 + x^k)^(k (k + 1) (5 k - 2)/6), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d^2 (d + 1) (5 d - 2)/6, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 29}]
A318125
a(n) = [x^n] exp(Sum_{k>=1} (-1)^(k+1)*x^k*(1 + (n - 3)*x^k)/(k*(1 - x^k)^4)).
Original entry on oeis.org
1, 1, 3, 14, 54, 238, 1026, 4573, 20404, 91902, 415953, 1891908, 8638846, 39569655, 181766878, 836950153, 3861927937, 17853107055, 82668539290, 383360628369, 1780126898575, 8275908734103, 38517137597486, 179442212204245, 836741558761935, 3905012142470483
Offset: 0
-
Table[SeriesCoefficient[Exp[Sum[(-1)^(k + 1) x^k (1 + (n - 3) x^k)/(k (1 - x^k)^4), {k, 1, n}]], {x, 0, n}], {n, 0, 25}]
Showing 1-4 of 4 results.
Comments