A122400
Number of square (0,1)-matrices without zero rows and with exactly n entries equal to 1.
Original entry on oeis.org
1, 1, 4, 31, 338, 4769, 82467, 1687989, 39905269, 1069863695, 32071995198, 1062991989013, 38596477083550, 1523554760656205, 64961391010251904, 2975343608212835855, 145687881987604377815, 7594435556630244257213
Offset: 0
-
A122399 := proc(n) option remember ; add( combinat[stirling2](n,k)*k^n*k!,k=0..n) ; end: A122400 := proc(n) option remember ; add( combinat[stirling1](n,k)*A122399(k),k=0..n)/n! ; end: for n from 0 to 30 do printf("%d, ",A122400(n)) ; od ; # R. J. Mathar, May 18 2007
-
max = 17; CoefficientList[ Series[ 1 + Sum[ ((1 + x)^n - 1)^n, {n, 1, max}], {x, 0, max}], x] (* Jean-François Alcover, Mar 26 2013, after Vladeta Jovovic *)
A338040
E.g.f.: Sum_{j>=0} 4^j * (exp(j*x) - 1)^j.
Original entry on oeis.org
1, 4, 132, 11140, 1763076, 449262724, 168055179012, 86720706877060, 59029852191779076, 51241585497612147844, 55245853646893977682692, 72423868722672448652558980, 113447698393867318106045295876, 209271794145089904620369489016964
Offset: 0
-
Flatten[{1, Table[Sum[4^j * j^n * j! * StirlingS2[n, j], {j, 0, n}], {n, 1, 20}]}]
nmax = 20; CoefficientList[Series[1 + Sum[4^j*(Exp[j*x] - 1)^j, {j, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
-
{a(n)=local(X=x+x*O(x^n)); n!*polcoeff(sum(m=0, n, 4^m*(exp(m*X)-1)^m), n)}
A195005
E.g.f.: Sum_{n>=0} 2^n*(exp(n*x) - 1)^n.
Original entry on oeis.org
1, 2, 34, 1490, 122530, 16227602, 3155309794, 846406200530, 299510392317730, 135163342884412562, 75760096553546176354, 51633670624622762956370, 42049600429338786951232930, 40326932840083815683430101522, 44984263429111569097120217311714
Offset: 0
E.g.f.: A(x) = 1 + 2*x + 34*x^2/2! + 1490*x^3/3! + 122530*x^4/4! +...
where
A(x) = 1 + 2*(exp(x)-1) + 2^2*(exp(2*x)-1)^2 + 2^3*(exp(3*x)-1)^3 +...
-
Flatten[{1, Table[Sum[2^k * k^n * k! * StirlingS2[n,k], {k,0,n}], {n,1,20}]}] (* Vaclav Kotesovec, Oct 04 2020 *)
-
{a(n)=local(X=x+x*O(x^n));n!*polcoeff(sum(m=0,n,2^m*(exp(m*X)-1)^m),n)}
-
{Stirling2(n, k)=if(k<0|k>n, 0, sum(i=0, k, (-1)^i*binomial(k, i)/k!*(k-i)^n))}
{a(n)=sum(k=0, n, 2^k*k^n*k!*Stirling2(n, k))}
A301582
G.f.: Sum_{n>=0} 3^n * ((1+x)^n - 1)^n.
Original entry on oeis.org
1, 3, 36, 765, 22932, 886707, 41971041, 2349915543, 151893243711, 11131097539221, 911906584505874, 82586031357156975, 8192750710914222984, 883506535094875209327, 102907862475072248379060, 12875067336646598300376165, 1722014444866824121524712497, 245185575019136812676809863351, 37027348593726417935247243009495, 5911490521308027393188499233189367, 994821814352463817234026392636083551
Offset: 0
G.f.: A(x) = 1 + 3*x + 36*x^2 + 765*x^3 + 22932*x^4 + 886707*x^5 + 41971041*x^6 + 2349915543*x^7 + 151893243711*x^8 + ...
such that
A(x) = 1 + 3*((1+x)-1) + 9*((1+x)^2-1)^2 + 27*((1+x)^3-1)^3 + 81*((1+x)^4-1)^4 + 243*((1+x)^5-1)^5 + 729*((1+x)^6-1)^6 + 2187*((1+x)^7-1)^7 + ...
Also,
A(x) = 1/4 + 3*(1+x)/(1 + 3*(1+x))^2 + 9*(1+x)^4/(1 + 3*(1+x)^2)^3 + 27*(1+x)^9/(1 + 3*(1+x)^3)^4 + 81*(1+x)^16/(1 + 3*(1+x)^4)^5 + 243*(1+x)^25/(1 + 3*(1+x)^5)^6 + ...
-
nmax = 20; CoefficientList[Series[1 + Sum[3^j*((1 + x)^j - 1)^j, {j, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 08 2020 *)
-
{a(n) = my(A,o=x*O(x^n)); A = sum(m=0,n, 3^m * ((1+x +o)^m - 1)^m ); polcoeff(A,n)}
for(n=0,30,print1(a(n),", "))
A301583
G.f.: Sum_{n>=0} 4^n * ((1+x)^n - 1)^n.
Original entry on oeis.org
1, 4, 64, 1792, 70736, 3600128, 224255040, 16521605376, 1405131880000, 135480346104896, 14602769310474240, 1739917222954854400, 227081534040721917952, 32217108743091290851328, 4936803887495636263284736, 812576030237749532251019264, 142976863303365903802301729024, 26781577193841845859144244087808, 5320767287406003709062843236972544, 1117525692987087894816123931091214336
Offset: 0
G.f.: A(x) = 1 + 4*x + 64*x^2 + 1792*x^3 + 70736*x^4 + 3600128*x^5 + 224255040*x^6 + 16521605376*x^7 + 1405131880000*x^8 + ...
such that
A(x) = 1 + 4*((1+x)-1) + 16*((1+x)^2-1)^2 + 64*((1+x)^3-1)^3 + 256*((1+x)^4-1)^4 + 1024*((1+x)^5-1)^5 + 4096*((1+x)^6-1)^6 + ...
Also,
A(x) = 1/5 + 4*(1+x)/(1 + 4*(1+x))^2 + 16*(1+x)^4/(1 + 4*(1+x)^2)^3 + 64*(1+x)^9/(1 + 4*(1+x)^3)^4 + 256*(1+x)^16/(1 + 4*(1+x)^4)^5 + 1024*(1+x)^25/(1 + 4*(1+x)^5)^6 + ...
-
nmax = 20; CoefficientList[Series[1 + Sum[4^j*((1 + x)^j - 1)^j, {j, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 08 2020 *)
-
{a(n) = my(A,o=x*O(x^n)); A = sum(m=0,n, 4^m * ((1+x +o)^m - 1)^m ); polcoeff(A,n)}
for(n=0,30,print1(a(n),", "))
A301463
G.f.: Sum_{n>=0} (2*(1+x)^n - 1)^n / 2^(n+1).
Original entry on oeis.org
1, 6, 134, 5102, 272694, 18758134, 1577807110, 156883546142, 18001728695894, 2341268080847014, 340346951612008454, 54686371000455538574, 9624103747115691611318, 1841049154379441320293142, 380367456989975381891133446, 84407842226680664984458744126, 20023121531700221583865582432854, 5056357801144690975957652265658438, 1354259474931265421064754160458035078, 383444904170987865090156939638756172846
Offset: 0
G.f.: A(x) = 1 + 6*x + 134*x^2 + 5102*x^3 + 272694*x^4 + 18758134*x^5 + 1577807110*x^6 + 156883546142*x^7 + 18001728695894*x^8 + ...
such that
A(x) = 1/2 + (2*(1+x) - 1)/2^2 + (2*(1+x)^2 - 1)^2/2^3 + (2*(1+x)^3 - 1)^3/2^4 + (2*(1+x)^4 - 1)^4/2^5 + (2*(1+x)^5 - 1)^5/2^6 + ...
Also,
A(x) = 1/3 + 2*(1+x)/(2 + (1+x))^2 + 2^2*(1+x)^4/(2 + (1+x)^2)^3 + 2^3*(1+x)^9/(2 + (1+x)^3)^4 + 2^4*(1+x)^16/(2 + (1+x)^4)^5 + 2^5*(1+x)^25/(2 + (1+x)^5)^6 + 2^6*(1+x)^36/(2 + (1+x)^6)^7 + ...
-
nmax = 20; Round[CoefficientList[Series[Sum[(2*(1 + x)^j - 1)^j/2^(j + 1), {j, 0, nmax^2}], {x, 0, nmax}], x]] (* Vaclav Kotesovec, Oct 08 2020 *)
A337755
G.f. A(x) satisfies: 1 = Sum_{n>=0} (n+1) * 2^n * ((1+x)^n - A(x))^n.
Original entry on oeis.org
1, 1, 3, 52, 1320, 43440, 1722712, 79186272, 4118457732, 238450436416, 15189543467688, 1055122226778720, 79359687454230296, 6425540170275120528, 557306222539540276176, 51558846502494563714080, 5068865533417385007925076, 527798429103621760357553448, 58032815995114574483132149504
Offset: 0
G.f.: A(x) = 1 + x + 3*x^2 + 52*x^3 + 1320*x^4 + 43440*x^5 + 1722712*x^6 + 79186272*x^7 + 4118457732*x^8 + 238450436416*x^9 + ...
where
1 = 1 + 2*2*((1+x) - A(x)) + 3*2^2*((1+x)^2 - A(x))^2 + 4*2^3*((1+x)^3 - A(x))^3 + 5*2^4*((1+x)^4 - A(x))^4 + 6*2^5*((1+x)^5 - A(x))^5 + 7*2^6*((1+x)^6 - A(x))^6 + 8*2^7*((1+x)^7 - A(x))^7 + ... + (n+1)*2^n*((1+x)^n - A(x))^n + ...
Also,
1 = 1/(1 + 2*A(x))^2 + 2*2*(1+x)/(1 + 2*(1+x)*A(x))^3 + 3*2^2*(1+x)^4/(1 + 2*(1+x)^2*A(x))^4 + 4*2^3*(1+x)^9/(1 + 2*(1+x)^3*A(x))^5 + 5*2^4*(1+x)^16/(1 + 2*(1+x)^4*A(x))^6 + 6*2^5*(1+x)^25/(1 + 2*(1+x)^5*A(x))^7 + 7*2^6*(1+x)^36/(1 + 2*(1+x)^6*A(x))^8 + ... + (n+1)*2^n*(1+x)^(n^2)/(1 + 2*(1+x)^n*A(x))^(n+2) + ...
-
{a(n) = my(A=[1]); for(i=0, n, A=concat(A, 0); A[#A] = Vec( sum(m=0, #A, (m+1) * 2^m * ((1+x)^m - Ser(A))^m ) )[#A]/4 ); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
Showing 1-7 of 7 results.
Comments