A218482
First differences of the binomial transform of the partition numbers (A000041).
Original entry on oeis.org
1, 1, 3, 8, 21, 54, 137, 344, 856, 2113, 5179, 12614, 30548, 73595, 176455, 421215, 1001388, 2371678, 5597245, 13166069, 30873728, 72185937, 168313391, 391428622, 908058205, 2101629502, 4853215947, 11183551059, 25718677187, 59030344851, 135237134812, 309274516740
Offset: 0
G.f.: A(x) = 1 + x + 3*x^2 + 8*x^3 + 21*x^4 + 54*x^5 + 137*x^6 + 344*x^7 +...
The g.f. equals the product:
A(x) = (1-x)/((1-x)-x) * (1-x)^2/((1-x)^2-x^2) * (1-x)^3/((1-x)^3-x^3) * (1-x)^4/((1-x)^4-x^4) * (1-x)^5/((1-x)^5-x^5) * (1-x)^6/((1-x)^6-x^6) * (1-x)^7/((1-x)^7-x^7) *...
and also equals the series:
A(x) = 1 + x*(1-x)/((1-x)-x)^2 + x^4*(1-x)^2/(((1-x)-x)*((1-x)^2-x^2))^2 + x^9*(1-x)^3/(((1-x)-x)*((1-x)^2-x^2)*((1-x)^3-x^3))^2 + x^16*(1-x)^4/(((1-x)-x)*((1-x)^2-x^2)*((1-x)^3-x^3)*((1-x)^4-x^4))^2 +...
Cf.
A000041,
A000219,
A011782,
A055887,
A063834,
A075900,
A098407,
A101509,
A103446,
A129519,
A141199,
A218481.
-
b:= proc(n) option remember;
add(combinat[numbpart](k)*binomial(n,k), k=0..n)
end:
a:= n-> b(n)-b(n-1):
seq(a(n), n=0..50); # Alois P. Heinz, Aug 19 2014
-
Flatten[{1, Table[Sum[Binomial[n-1,k]*PartitionsP[k+1],{k,0,n-1}],{n,1,30}]}] (* Vaclav Kotesovec, Jun 25 2015 *)
-
{a(n)=sum(k=0,n,(binomial(n,k)-if(n>0,binomial(n-1,k)))*numbpart(k))}
for(n=0,40,print1(a(n),", "))
-
{a(n)=local(X=x+x*O(x^n));polcoeff(prod(k=1,n,(1-x)^k/((1-x)^k-X^k)),n)}
-
{a(n)=local(X=x+x*O(x^n));polcoeff(sum(m=0,n,x^m*(1-x)^(m*(m-1)/2)/prod(k=1,m,((1-x)^k - X^k))),n)}
-
{a(n)=local(X=x+x*O(x^n));polcoeff(sum(m=0,n,x^(m^2)*(1-X)^m/prod(k=1,m,((1-x)^k - x^k)^2)),n)}
-
{a(n)=local(X=x+x*O(x^n));polcoeff(exp(sum(m=1,n+1,x^m/((1-x)^m-X^m)/m)),n)}
-
{a(n)=local(X=x+x*O(x^n));polcoeff(exp(sum(m=1,n+1,sigma(m)*x^m/(1-X)^m/m)),n)}
-
{a(n)=local(X=x+x*O(x^n));polcoeff(prod(k=1,n,(1 + x^k/(1-X)^k)^valuation(2*k,2)),n)}
A281425
a(n) = [q^n] (1 - q)^n / Product_{j=1..n} (1 - q^j).
Original entry on oeis.org
1, 0, 1, -1, 2, -4, 9, -21, 49, -112, 249, -539, 1143, -2396, 5013, -10550, 22420, -48086, 103703, -223806, 481388, -1029507, 2187944, -4625058, 9742223, -20490753, 43111808, -90840465, 191773014, -405523635, 858378825, -1817304609, 3845492204, -8129023694, 17162802918, -36191083386
Offset: 0
-
b:= proc(n, k) option remember; `if`(k=0,
combinat[numbpart](n), b(n, k-1)-b(n-1, k-1))
end:
a:= n-> b(n$2):
seq(a(n), n=0..35); # Alois P. Heinz, Dec 21 2024
-
Table[SeriesCoefficient[(1 - q)^n / Product[(1 - q^j), {j, 1, n}], {q, 0, n}], {n, 0, 35}]
Table[SeriesCoefficient[(1 - q)^n QPochhammer[q^(1 + n), q]/QPochhammer[q, q], {q, 0, n}], {n, 0, 35}]
Table[SeriesCoefficient[1/QFactorial[n, q], {q, 0, n}], {n, 0, 35}]
Table[Differences[PartitionsP[Range[0, n]], n], {n, 0, 35}] // Flatten
Table[Sum[(-1)^j*Binomial[n, j]*PartitionsP[n-j], {j, 0, n}], {n, 0, 30}] (* Vaclav Kotesovec, Oct 06 2017 *)
A293467
a(n) = Sum_{k=0..n} (-1)^k * binomial(n, k) * q(k), where q(k) is A000009 (partitions into distinct parts).
Original entry on oeis.org
1, 0, 0, -1, -3, -7, -14, -25, -41, -64, -100, -165, -294, -550, -1023, -1795, -2823, -3658, -2882, 2873, 20435, 62185, 148863, 314008, 613957, 1155794, 2175823, 4244026, 8753538, 19006490, 42471787, 95234575, 210395407, 453413866, 949508390, 1931939460
Offset: 0
-
Table[Sum[(-1)^k * Binomial[n, k] * PartitionsQ[k], {k, 0, n}], {n, 0, 50}]
A266232
Binomial transform of the number of partitions into distinct parts (A000009).
Original entry on oeis.org
1, 2, 4, 9, 21, 49, 114, 265, 615, 1422, 3272, 7493, 17090, 38850, 88065, 199097, 448953, 1009788, 2265642, 5071611, 11328395, 25254093, 56195143, 124829822, 276839061, 612991848, 1355268779, 2992016128, 6596222234, 14522634554, 31933047707, 70130243427
Offset: 0
-
Table[Sum[Binomial[n, k]*PartitionsQ[k], {k, 0, n}], {n, 0, 50}]
nmax = 30; CoefficientList[Series[Sum[PartitionsQ[k] * x^k / (1-x)^(k+1), {k, 0, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Jul 31 2022 *)
A294500
Binomial transform of the number of planar partitions (A000219).
Original entry on oeis.org
1, 2, 6, 19, 60, 185, 559, 1662, 4875, 14134, 40564, 115370, 325465, 911355, 2534595, 7004827, 19246626, 52596377, 143006632, 386984573, 1042537831, 2796803110, 7473161196, 19893461042, 52767059608, 139488323734, 367540167625, 965445514862, 2528516552660
Offset: 0
-
nmax = 40; s = CoefficientList[Series[Product[1/(1-x^k)^k, {k, 1, nmax}], {x, 0, nmax}], x]; Table[Sum[Binomial[n, k] * s[[k+1]], {k, 0, n}], {n, 0, nmax}]
Original entry on oeis.org
1, 2, 7, 34, 221, 1666, 15187, 153602, 1770169, 22379266, 312164831, 4685997922, 76668261397, 1335425319554, 24921410400811, 493075754663746, 10358312736025457, 228862423291312642, 5335861084579488439, 130235118120543955106, 3333808742649699747661
Offset: 0
-
Table[Sum[Binomial[n, k]*k!*PartitionsP[k], {k, 0, n}], {n, 0, 20}]
nmax = 20; CoefficientList[Series[Exp[x] * x^(1/24)/DedekindEta[Log[x]/(2*Pi*I)], {x, 0, nmax}], x] * Range[0, nmax]!
-
x='x+O('x^50); Vec(serlaplace(exp(x)/eta(x))) \\ G. C. Greubel, Oct 15 2018
A095051
E.g.f.: exp(-x)/eta(x), where eta(x) is the Dedekind eta function.
Original entry on oeis.org
1, 0, 3, 8, 69, 384, 4375, 34152, 464457, 5051456, 75865131, 1032865800, 18108977293, 286975230528, 5639956035519, 105513165321704, 2269311347406225, 48066460265622912, 1146324511845384787, 26924271371612501256, 701472699537610875861, 18214089447110112972800, 512194770431254272442983
Offset: 0
-
Table[Sum[(-1)^(n-k) * Binomial[n, k] * k! * PartitionsP[k], {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Oct 31 2017 *)
nmax = 20; CoefficientList[Series[Exp[-x] * x^(1/24)/DedekindEta[Log[x]/(2*Pi*I)], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 31 2017 *)
-
a(n)=polcoeff(1/eta(x)/exp(x),n)*n!
Original entry on oeis.org
1, 2, 5, 22, 113, 746, 6037, 55070, 548417, 6281938, 79935941, 1087584422, 16109401585, 255667890362, 4358283982613, 79893373511086, 1542859916102657, 31322024816838050, 676027617881188357, 15287136167625123638, 362322855217463741681
Offset: 0
-
m:=30; R:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Exp(x)*(&*[1 + x^k: k in [1..50]]))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Oct 15 2018
-
Table[Sum[Binomial[n, k]*k!*PartitionsQ[k], {k, 0, n}], {n, 0, 20}]
-
x='x+O('x^30); Vec(serlaplace(exp(x)*eta(x^2)/eta(x))) \\ G. C. Greubel, Oct 15 2018
A294468
Inverse binomial transform of A088311.
Original entry on oeis.org
1, 0, 1, 8, 9, 224, 1225, 11304, 103537, 1431296, 15642801, 206721800, 3295533241, 47467875168, 859354139449, 15596241280424, 283240963555425, 5859309797252864, 129874369387025377, 2752905169704533256, 67640333903657850601
Offset: 0
-
Table[Sum[(-1)^(n-k)*Binomial[n, k]*k!*PartitionsQ[k], {k, 0, n}], {n, 0, 20}]
max = 20; t = Table[k!*PartitionsQ[k], {k, 0, max}]; Table[Differences[t, n], {n, 0, max}][[All, 1]] (* Jean-François Alcover, Nov 02 2017 *)
Original entry on oeis.org
1, 3, 9, 27, 79, 225, 627, 1717, 4633, 12341, 32501, 84737, 218959, 561263, 1428287, 3610671, 9072367, 22668285, 56345835, 139382713, 343242533, 841713531, 2055944117, 5003148987, 12132552115, 29323810757, 70651867863, 169719163521, 406541986857, 971192810019
Offset: 0
-
A015128[n_]:=Sum[PartitionsP[n-k]*PartitionsQ[k], {k, 0, n}];
Table[Sum[Binomial[n, k]*A015128[k], {k, 0, n}], {n, 0, 30}]
Showing 1-10 of 24 results.
Comments