A318118
a(n) = [x^n] exp(Sum_{k>=1} x^k*(1 + (n - 3)*x^k)/(k*(1 - x^k)^3)).
Original entry on oeis.org
1, 1, 3, 10, 40, 150, 616, 2456, 10102, 41400, 171526, 712111, 2972115, 12434993, 52195414, 219567909, 925704792, 3909841659, 16541598215, 70085877919, 297347922785, 1263046810334, 5370930049915, 22861883482838, 97402827429118, 415332438952517, 1772380322197432
Offset: 0
-
Table[SeriesCoefficient[Exp[Sum[x^k (1 + (n - 3) x^k)/(k (1 - x^k)^3), {k, 1, n}]], {x, 0, n}], {n, 0, 26}]
A317019
Expansion of Product_{k>=1} 1/(1 - x^k)^(k*binomial(k+2,3)).
Original entry on oeis.org
1, 1, 9, 39, 155, 570, 2131, 7599, 26667, 90996, 305144, 1004173, 3254123, 10385884, 32704819, 101678860, 312435675, 949498206, 2855953018, 8507079361, 25108844890, 73468004480, 213201630328, 613871526178, 1754365814430, 4978113020152, 14029639217532, 39281646364737
Offset: 0
-
a:=series(mul(1/(1-x^k)^(k*binomial(k+2,3)),k=1..100),x=0,28): seq(coeff(a,x,n),n=0..27); # Paolo P. Lava, Apr 02 2019
-
nmax = 27; CoefficientList[Series[Product[1/(1 - x^k)^(k Binomial[k + 2, 3]), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 27; CoefficientList[Series[Exp[Sum[x^k (1 + 3 x^k)/(k (1 - x^k)^5), {k, 1, nmax}]], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d^3 (d + 1) (d + 2)/6, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 27}]
A295828
Expansion of Product_{k>=1} 1/(1 - x^k)^(2*k*(2*k-1)).
Original entry on oeis.org
1, 2, 15, 58, 235, 862, 3122, 10664, 35639, 115164, 363806, 1122050, 3393316, 10068006, 29374056, 84347944, 238713339, 666419456, 1836986443, 5003473866, 13476019215, 35912177618, 94746481999, 247597696802, 641205816641, 1646268490598, 4192059724668, 10590937903412, 26556243826240
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
-
nmax = 28; CoefficientList[Series[Product[1/(1 - x^k)^(2 k (2 k - 1)), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[2 d^2 (2 d - 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 28}]
Showing 1-3 of 3 results.
Comments