A206622
G.f.: Product_{n>0} ( (1+x^n)/(1-x^n) )^(n^2).
Original entry on oeis.org
1, 2, 10, 36, 118, 376, 1148, 3376, 9654, 26894, 73192, 195188, 510948, 1315048, 3332720, 8326448, 20529526, 49998884, 120379574, 286726340, 676057144, 1578880480, 3654180236, 8385122192, 19085029540, 43103203626, 96630606968, 215105226728, 475608824400
Offset: 0
G.f.: A(x) = 1 + 2*x + 10*x^2 + 36*x^3 + 118*x^4 + 376*x^5 + 1148*x^6 +...
where A(x) = (1+x)/(1-x) * (1+x^2)^4/(1-x^2)^4 * (1+x^3)^9/(1-x^3)^9 *...
Also, A(x) = Euler transform of [2,7,18,28,50,63,98,112,162,175,...]:
A(x) = 1/((1-x)^2*(1-x^2)^7*(1-x^3)^18*(1-x^4)^28*(1-x^5)^50*(1-x^6)^63*...).
-
nmax = 40; CoefficientList[Series[Product[((1+x^k)/(1-x^k))^(k^2), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 19 2015 *)
-
{a(n)=polcoeff(prod(m=1,n+1,((1+x^m)/(1-x^m+x*O(x^n)))^(m^2)),n)}
-
{a(n)=polcoeff(exp(sum(m=1, n, (sigma(2*m, 3)-sigma(m, 3))/4*x^m/m)+x*O(x^n)), n)}
-
{a(n)=local(InvEulerGF=x*(2+7*x+12*x^2+7*x^3+2*x^4)/(1-x^2+x*O(x^n))^3);polcoeff(1/prod(k=1,n,(1-x^k+x*O(x^n))^polcoeff(InvEulerGF,k)),n)}
for(n=0,35,print1(a(n),", "))
A380290
a(n) = [x^n] G(x)^n, where G(x) = Product_{k >= 1} 1/(1 - x^k)^(k^2) is the g.f. of A023871.
Original entry on oeis.org
1, 1, 11, 73, 539, 3976, 30107, 229811, 1771803, 13749742, 107305836, 841211966, 6619647419, 52258136399, 413682035393, 3282569032273, 26101575743771, 207930807629248, 1659134361686186, 13258065574274885, 106084302933126364, 849845499077000534, 6815530442695480418, 54712839001004065090
Offset: 0
Examples of supercongruences:
a(7) - a(1) = 229811 - 1 = 2*5*(7^3)*67 == 0 (mod 7^3)
a(3*7) - a(3) = 849845499077000534 - 73 = (7^3)*29243*84727410689 == 0 (mod 7^3)
a(19) - a(1) = 13258065574274885 - 1 = (2^2)*11*(19^3)*29*26723*56687 == 0 (mod 19^3)
- R. P. Stanley. Enumerative combinatorics. Vol. 2, volume 62 of Cambridge Studies in Advanced Mathematics. Cambridge University Press, Cambridge, 1999.
-
with(numtheory):
G(x) := series(exp(add(sigma[3](k)*x^k/k, k = 1..23)),x,24):
seq(coeftayl(G(x)^n, x = 0, n), n = 0..23);
-
Table[SeriesCoefficient[Product[1/(1 - x^k)^(n*k^2), {k, 1, n}], {x, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Jul 30 2025 *)
(* or *)
Table[SeriesCoefficient[Exp[n*Sum[DivisorSigma[3, k]*x^k/k, {k, 1, n}]], {x, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Jul 30 2025 *)
A380581
a(n) = [x^n] G(x)^n, where G(x) = Product_{k >= 1} 1/(1 - x^k)^(k^4) is the g.f. of A023873.
Original entry on oeis.org
1, 1, 35, 397, 5075, 67126, 897911, 12144945, 165880531, 2280262825, 31522512910, 437730330357, 6101414176535, 85317965576325, 1196299277106675, 16813979471920522, 236812229975204563, 3341448338530887015, 47225228515043980715, 668417245247747877735, 9473101371364286661950, 134416752857691389968377, 1909344928242571795580255
Offset: 0
Examples of supercongruences:
a(7) - a(1) = 12144945 - 1 = (2^4)*(7^3)*2213 = 0 (mod 7^3)
a(3*7) - a(3) = 134416752857691389968377 - 397 = (2^2)*5*(7^3)*17*223*5168630662682423 == 0 (mod 7^3)
a(2*11) - a(2) = 1909344928242571795580255 - 35 = (2^2)*(3^4)*5*7*(11^4)*17*23* 29411951377843 == 0 (mod 11^4)
- R. P. Stanley. Enumerative combinatorics. Vol. 2, volume 62 of Cambridge Studies in Advanced Mathematics. Cambridge University Press, Cambridge, 1999.
-
with(numtheory):
G(x) := series(exp(add(sigma[5](k)*x^k/k, k = 1..22)), x, 23):
seq(coeftayl(G(x)^n, x = 0, n), n = 0..22);
A380583
a(n) = [x^n] G(x)^n, where G(x) = Product_{k >= 1} ((1 + x^(2*k))/(1 - x^k))^(k^2).
Original entry on oeis.org
1, 1, 13, 82, 665, 5026, 40180, 319677, 2583401, 20965150, 171276238, 1405008925, 11571476120, 95601033542, 792038546739, 6577523807332, 54737967873385, 456368114019558, 3811136362823056, 31873576059000827, 266919720010452190, 2237944814420991135, 18784073017650350445
Offset: 0
Examples of supercongruences:
a(7) - a(1) = 319677 - 1 = (2^2)*(7^3)*233 == 0 (mod 7^3)
a(11) - a(1) = 1405008925 - 1 = (2^2)*3*(11^5)*727 == 0 (mod 11^5)
a(22) - a(2) = 18784073017650350445 - 13 = (2^5)*(11^3)*222773*1979699077 == 0 (mod 11^3)
-
G(x) := series(mul( ( (1 + x^(2*k))/(1 - x^k) )^(k^2), k = 1..22), x, 23):
a:= n-> coeftayl(G(x)^n, x = 0, n):
seq(a(n), n = 0..22);
Showing 1-4 of 4 results.
Comments