cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-7 of 7 results.

A317346 O.g.f. A(x) satisfies: [x^n] exp( n^3*x - n^2*A(x) ) = 0 for n >= 1.

Original entry on oeis.org

1, 2, 72, 8096, 1839000, 695334816, 392764566208, 309340607492096, 323795915817507936, 434750954619876448000, 728547799352068864173632, 1490865523016798790557180928, 3659466509860384349989504297344, 10614823215131644149237135937187328, 35927108634064565449228268842108588800, 140351379904337650357154561973550135705600
Offset: 1

Views

Author

Paul D. Hanna, Jul 26 2018

Keywords

Comments

It is remarkable that this sequence should consist entirely of integers.

Examples

			O.g.f.: A(x) = x + 2*x^2 + 72*x^3 + 8096*x^4 + 1839000*x^5 + 695334816*x^6 + 392764566208*x^7 + 309340607492096*x^8 + ...
such that [x^n] exp( n^3*x - n^2*A(x) ) = 0  for n >= 1.
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^3*x - n^2*A(x) ) begins:
n=1: [1, 0, -4, -432, -194256, -220662720, -500627544000, ...];
n=2: [1, 4, 0, -1856, -805376, -898258176, -2023715201024, ...];
n=3: [1, 18, 288, 0, -1989792, -2154563712, -4727980751616, ...];
n=4: [1, 48, 2240, 94464, 0, -4244861952, -9137589559296, ...];
n=5: [1, 100, 9900, 959200, 84852400, 0, -15901448888000, ...];
n=6: [1, 180, 32256, 5738688, 1003636224, 161358324480, 0, ...];
n=7: [1, 294, 86240, 25218144, 7335234144, 2103824749824, 557359956846336, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 5*x^2/2! + 445*x^3/3! + 196105*x^4/4! + 221673401*x^5/5! + 501981700621*x^6/6! + 1983064113021685*x^7/7!  + ... + A317345(n)*x^n/n! + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^3*x +x*O(x^#A)) / Ser(A)^(m^2) )[m+1]/m^2 ); polcoeff( log(Ser(A)),n)}
    for(n=1,20,print1(a(n),", "))

Formula

a(n) ~ sqrt(1 - c) * 3^(3*n - 7/3) * n^(2*n - 5/2) / (sqrt(2*Pi) * exp(2*n) * c^(n - 1/3) * (3 - c)^(2*n - 2)), where c = -LambertW(-3*exp(-3)) = 0.1785606278779211065968086697... = -A226750. - Vaclav Kotesovec, Aug 07 2018

A317347 O.g.f. A(x) satisfies: [x^n] exp( n^3*x - n*A(x) ) = 0 for n >= 1.

Original entry on oeis.org

1, 9, 552, 85842, 24653700, 11219022936, 7393496092416, 6649411839351120, 7822998961379912592, 11662362974001268456560, 21487905123054927319268352, 47958258768575173308988367040, 127523196462392124262710980808384, 398397752352904475778061859746030080, 1445051361690004153927005867189533921280
Offset: 1

Views

Author

Paul D. Hanna, Jul 29 2018

Keywords

Comments

It is remarkable that this sequence should consist entirely of integers.

Examples

			O.g.f.: A(x) = x + 9*x^2 + 552*x^3 + 85842*x^4 + 24653700*x^5 + 11219022936*x^6 + 7393496092416*x^7 + 6649411839351120*x^8 + ...
such that [x^n] exp( n^3*x - n*A(x) ) = 0  for n >= 1.
ILLUSTRATION OF DEFINITION.
The table of coefficients in  begins:
n=1: [1, 0, -18, -3312, -2059236, -2957847840, -8077030651800, ...];
n=2: [1, 6, 0, -7056, -4281984, -6040453824, -16367904244224, ...];
n=3: [1, 24, 522, 0, -6980580, -9667325376, -25560523291464, ...];
n=4: [1, 60, 3528, 189792, 0, -14146669440, -37025599219200, ...];
n=5: [1, 120, 14310, 1679040, 181358460, 0, -51097553724600, ...];
n=6: [1, 210, 43992, 9173088, 1887214464, 358972896960, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 19*x^2/2! + 3367*x^3/3! + 2074537*x^4/4! + 2969379361*x^5/5! + 8096147776171*x^6/6! + 37321188279552199*x^7/7! + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^3*x +x*O(x^#A)) / Ser(A)^m )[m+1]/m ); polcoeff( log(Ser(A)), n)}
    for(n=1, 20, print1(a(n), ", "))

Formula

a(n) ~ sqrt(1-c) * 3^(3*n-1) * n^(2*n - 3/2) / (sqrt(2*Pi) * c^n * (3-c)^(2*n-1) * exp(2*n)), where c = -LambertW(-3*exp(-3)) = 0.1785606278779211065968086697... = -A226750. - Vaclav Kotesovec, Aug 06 2018

A317343 E.g.f. A(x) satisfies: [x^n] exp(n^2*x) / A(x)^n = 0 for n >= 1.

Original entry on oeis.org

1, 1, 3, 43, 1945, 178041, 26792971, 5940440563, 1812303908913, 725818277844145, 368664266359757971, 231291789356545214331, 175516846850044015048393, 158383499766971409675254953, 167568661592262324239839114395, 205391322843896611716680298647491, 288693442696565330249751284373878881, 461220054642000786943064376254671287393
Offset: 0

Views

Author

Paul D. Hanna, Jul 26 2018

Keywords

Comments

It is remarkable that the logarithm of the e.g.f. A(x) should be an integer series.

Examples

			E.g.f.: A(x) = 1 + x + 3*x^2/2! + 43*x^3/3! + 1945*x^4/4! + 178041*x^5/5! + 26792971*x^6/6! + 5940440563*x^7/7! + 1812303908913*x^8/8! + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp(n^2*x) / A(x)^n begins:
n=1: [1, 0, -2, -36, -1764, -167280, -25620600, -5737974480, ...];
n=2: [1, 2, 0, -88, -4160, -371328, -55329536, -12201990400, ...];
n=3: [1, 6, 30, 0, -7812, -698184, -97733304, -20791334880, ...];
n=4: [1, 12, 136, 1296, 0, -1171968, -168658176, -33909447168, ...];
n=5: [1, 20, 390, 7220, 113020, 0, -265712600, -55963975600, ...];
n=6: [1, 30, 888, 25704, 709056, 16600320, 0, -84622337280, ...];
n=7: [1, 42, 1750, 72072, 2909340, 112245672, 3684715944, 0, ...];
n=8: [1, 56, 3120, 172640, 9455488, 508540416, 26199517696, 1150524892160, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
LOGARITHMIC PROPERTY.
The logarithm of the e.g.f. is the integer series:
log(A(x)) = x + x^2 + 6*x^3 + 74*x^4 + 1400*x^5 + 35676*x^6 + 1140328*x^7 + 43740848*x^8 + 1954336608*x^9 + 99561874080*x^10 + ... + A317344(n)*x^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^2*x +x*O(x^#A)) / Ser(A)^m )[m+1]/m ); n!*A[n+1]}
    for(n=0,20,print1(a(n),", "))

Formula

a(n) ~ sqrt(1-c) * 2^(2*n - 3/2) * n^(2*n-1) / (exp(2*n) * c^(n - 1/2) * (2-c)^(n-1)), where c = -LambertW(-2*exp(-2)) = -A226775 = 0.4063757399599599... - Vaclav Kotesovec, Aug 06 2018

A319941 O.g.f. A(x) satisfies: [x^n] exp( n^4*x - n*A(x) ) = 0 for n >= 1.

Original entry on oeis.org

1, 49, 22542, 34776266, 124857847020, 863035137487572, 10208133235178252640, 190511518719216943969008, 5284939084238999180631562560, 208156037245304153601560603185040, 11224507767787823723649649410800624768, 804502870984274832989329177960786158548256
Offset: 1

Views

Author

Paul D. Hanna, Oct 02 2018

Keywords

Comments

It is remarkable that this sequence should consist entirely of integers.

Examples

			G.f.: A(x) = x + 49*x^2 + 22542*x^3 + 34776266*x^4 + 124857847020*x^5 + 863035137487572*x^6 + 10208133235178252640*x^7 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^4*x - n*A(x) ) begins:
n=1: [1, 0, -98, -135252, -834601572, -14982809095440, ...];
n=2: [1, 14, 0, -275992, -1684485824, -30082728311616, ...];
n=3: [1, 78, 5790, 0, -2603944836, -45947242627272, ...];
n=4: [1, 252, 63112, 15165648, 0, -63525640595328, ...];
n=5: [1, 620, 383910, 236740340, 140783667580, 0, ...];
n=6: [1, 1290, 1663512, 2143601928, 2754163718208, 3423991878509760, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 99*x^2/2! + 135547*x^3/3! + 835200793*x^4/4! + 14987248838841*x^5/5! + 621476619810599851*x^6/6! + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^4*x +x*O(x^#A)) / Ser(A)^m )[m+1]/m ); polcoeff( log(Ser(A)), n)}
    for(n=1, 15, print1(a(n), ", "))

Formula

a(n) ~ sqrt(1-c) * 2^(8*n - 5/2) * n^(3*n - 3/2) / (sqrt(Pi) * exp(3*n) * c^n * (4-c)^(3*n - 1)), where c = -LambertW(-4*exp(-4)) = 0.079309605127113656439108647... - Vaclav Kotesovec, Oct 13 2020

A319942 O.g.f. A(x) satisfies: [x^n] exp( n^4*x - n^2*A(x) ) = 0 for n >= 1.

Original entry on oeis.org

1, 18, 5616, 6776352, 20200266000, 119799079486272, 1242032508354758400, 20634722510624457007104, 515736410631216295520236032, 18480208067078637967802351884800, 913939154183946975187574927409795072, 60487962958244860971401604975128195088384
Offset: 1

Views

Author

Paul D. Hanna, Oct 02 2018

Keywords

Comments

It is remarkable that this sequence should consist entirely of integers.

Examples

			G.f.: A(x) = x + 18*x^2 + 5616*x^3 + 6776352*x^4 + 20200266000*x^5 + 119799079486272*x^6 + 1242032508354758400*x^7 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^4*x - n^2*A(x) ) begins:
n=1: [1, 0, -36, -33696, -162628560, -2424019789440, ...];
n=2: [1, 12, 0, -138240, -657040896, -9735157974528, ...];
n=3: [1, 72, 4860, 0, -1533920976, -22357116073728, ...];
n=4: [1, 240, 57024, 12870144, 0, -41496660080640, ...];
n=5: [1, 600, 359100, 213537600, 121570858800, 0, ...];
n=6: [1, 1260, 1586304, 1994264064, 2496165050880, 3006510865205760, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 37*x^2/2! + 33805*x^3/3! + 162771337*x^4/4! + 2424857569561*x^5/5! + 86269983111064621*x^6/6! + 6260449705448367386917*x^7/7! + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^4*x +x*O(x^#A)) / Ser(A)^(m^2) )[m+1]/m^2 ); polcoeff( log(Ser(A)), n)}
    for(n=1, 15, print1(a(n), ", "))

Formula

a(n) ~ sqrt(1-c) * 2^(8*n - 9/2) * n^(3*n - 5/2) / (sqrt(Pi) * c^n * (4-c)^(3*n - 2) * exp(3*n)), where c = -LambertW(-4*exp(-4)) = 0.07930960512711365643910864738... - Vaclav Kotesovec, Oct 13 2020

A319943 O.g.f. A(x) satisfies: [x^n] exp( n^4*x - n^3*A(x) ) = 0 for n >= 1.

Original entry on oeis.org

1, 4, 756, 666368, 1573194000, 7732870168896, 68447889079649744, 991668063561584680960, 21964178018215273705692768, 706356702284500884771233120000, 31676677475982382039405057763384448, 1917371897548937365539316712575130025984, 152498179997818599198940803864398810967251456
Offset: 1

Views

Author

Paul D. Hanna, Oct 02 2018

Keywords

Comments

It is remarkable that this sequence should consist entirely of integers.

Examples

			G.f.: A(x) = x + 4*x^2 + 756*x^3 + 666368*x^4 + 1573194000*x^5 + 7732870168896*x^6 + 68447889079649744*x^7 + 991668063561584680960*x^8 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^4*x - n^3*A(x) ) begins:
n=1: [1, 0, -8, -4536, -15992640, -188782917120, ...];
n=2: [1, 8, 0, -37312, -129112064, -1515383749632, ...];
n=3: [1, 54, 2700, 0, -453396528, -5216886215136, ...];
n=4: [1, 192, 36352, 6492672, 0, -12944825376768, ...];
n=5: [1, 500, 249000, 122933000, 57869896000, 0, ...];
n=6: [1, 1080, 1164672, 1253133504, 1340717598720, 1376766221921280, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 9*x^2/2! + 4561*x^3/3! + 16011217*x^4/4! + 188863653441*x^5/5! + 5568801588349081*x^6/6! + 345016372861620194449*x^7/7! + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^4*x +x*O(x^#A)) / Ser(A)^(m^3) )[m+1]/m^3 ); polcoeff( log(Ser(A)), n)}
    for(n=1, 15, print1(a(n), ", "))

Formula

a(n) ~ sqrt(1-c) * 2^(8*n - 7) * n^(3*n - 7/2) / (sqrt(Pi) * c^(n - 1/4) * (4-c)^(3*n - 3) * exp(3*n)), where c = -LambertW(-4*exp(-4)) = 0.079309605127113656439108647386463779474372628792... - Vaclav Kotesovec, Oct 13 2020

A319146 L.g.f. A(x) satisfies: [x^(n-1)] exp( n^2*x - n*A(x) ) = 0 for n>1.

Original entry on oeis.org

2, 3, 28, 475, 11556, 362418, 13820696, 617990499, 31613351140, 1817581003238, 115889207486856, 8109201377360590, 617515197617355688, 50821356562425738180, 4494201727819787034288, 424930120163186457909923, 42774475244179902914458980, 4567011383256552019018866462, 515499978801248295048365872680, 61333960606400043841174213941210, 7671985428777785517888000656381240
Offset: 1

Views

Author

Paul D. Hanna, Sep 18 2018

Keywords

Comments

a(2^k) is odd for k >= 1, and a(n) is even elsewhere.

Examples

			L.g.f., A(x) = Sum_{n>=1} a(n)*x^n/n, begins
A(x) = 2*x + 3*x^2/2 + 28*x^3/3 + 475*x^4/4 + 11556*x^5/5 + 362418*x^6/6 + 13820696*x^7/7 + 617990499*x^8/8 + 31613351140*x^9/9 + 1817581003238*x^10/10 + ...
RELATED SERIES.
exp(A(x)) = 1 + 2*x + 7*x^2/2! + 82*x^3/3! + 3413*x^4/4! + 310306*x^5/5! + 47180827*x^6 + 10609392242*x^7/7! + 3284088709897*x^8/8! + 1333647722701378*x^9/9! + ... + A319144(n)*x^n/n!  +...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp(n^2*x - n*A(x)) begins
n=1: [1, -1, -2, -48, -2616, -262080, -41718240, -9630270720, ...];
n=2: [1, 0, -6, -112, -5592, -547968, -86345120, -19809990912, ...];
n=3: [1, 3, 0, -222, -10728, -958824, -144971712, -32519314080, ...];
n=4: [1, 8, 52, 0, -18648, -1693248, -236690784, -50727983616, ...];
n=5: [1, 15, 210, 2420, 0, -2739720, -399251600, -80125144800, ...];
n=6: [1, 24, 558, 12192, 221184, 0, -616918320, -131299591680, ...];
n=7: [1, 35, 1204, 40278, 1272768, 33597312, 0, -196436730672, ...];
n=8: [1, 48, 2280, 106688, 4869552, 210771456, 7654459648, 0, ...]; ...
in which the n-th term in row n forms a diagonal of zeros after an initial '1'.
ODD TERMS.
The odd terms occur at positions 2^k for k >= 1, and begin:
a(2) = 3,
a(4) = 475,
a(8) = 617990499,
a(16) = 424930120163186457909923,
a(32) = 14084628818669848855677925942788864036579283666486658556963, ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1],L=[2]); for(m=1, n+1, A=concat(A, 0); A[m] = Vec( exp(m^2*x +x*O(x^n))/Ser(A)^(m) )[m]/m ); L=Vec(Ser(A)'/Ser(A)); L[n]}
    for(n=1, 21, print1(a(n), ", "))

Formula

a(n) ~ sqrt(1-c) * 2^(2*n - 3/2) * n^(n - 1/2) / (sqrt(Pi) * exp(n) * c^n * (2-c)^(n-1)), where c = -LambertW(-2*exp(-2)) = -A226775. - Vaclav Kotesovec, Aug 11 2021
Showing 1-7 of 7 results.