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-6 of 6 results.

A088716 G.f. satisfies: A(x) = 1 + x*A(x)*d/dx[x*A(x)] = 1 + x*A(x)^2 + x^2*A(x)*A'(x).

Original entry on oeis.org

1, 1, 3, 14, 85, 621, 5236, 49680, 521721, 5994155, 74701055, 1003125282, 14437634276, 221727608284, 3619710743580, 62605324014816, 1143782167355649, 22014467470369143, 445296254367273457, 9444925598142843970
Offset: 0

Views

Author

Paul D. Hanna, Oct 12 2003

Keywords

Crossrefs

Programs

  • Maple
    a:= proc(n) option remember; `if`(n=0, 1, add(
          a(j)*a(n-j-1)*(j+1), j=0..n-1))
        end:
    seq(a(n), n=0..25);  # Alois P. Heinz, Aug 10 2017
  • Mathematica
    a=ConstantArray[0,21]; a[[1]]=1; a[[2]]=1; Do[a[[n+1]] = Sum[k*a[[n-k+1]]*a[[k]],{k,1,n}],{n,2,20}]; a (* Vaclav Kotesovec, Feb 21 2014 *)
    m = 20; A[_] = 0;
    Do[A[x_] = 1 + x A[x]^2 + x^2 A[x] A'[x] + O[x]^m // Normal, {m}];
    CoefficientList[A[x], x] (* Jean-François Alcover, Feb 18 2020 *)
    a[1]:=1; a[2]:=1; a[n_]:=a[n]=n/2 Sum[a[k] a[n-k], {k,1,n-1}];
    Map[a,Range[20]] (* Oliver Seipel, Nov 03 2024 ,after Schröder 1870 *)
  • PARI
    a(n)=if(n==0,1,sum(k=0,n-1,(k+1)*a(k)*a(n-k-1)))
    
  • PARI
    {a(n)=local(G=1+x);for(i=1,n,G=exp(x/(1 - x*deriv(G)/G+x*O(x^n))));polcoeff(log(G)/x,n)} \\ Paul D. Hanna, Jan 01 2011

Formula

a(n) = Sum_{k=1..n} k*a(k-1)*a(n-k) for n>=1 with a(0)=1.
Forms column 0 of triangle T=A112911, where the matrix inverse satisfies [T^-1](n,k) = -(k+1)*T(n-1,0) for n>k>=0.
Self-convolution is A112916, where a(n) = (n+1)/2*A112916(n-1) for n>0.
G.f.: A(x) = serreverse(x/f(x))/x where f(x) is the g.f. of A088715.
O.g.f.: A(x) = log(G(x))/x where G(x) is the e.g.f. of A182962 given by G(x) = exp( x/(1 - x*G'(x)/G(x)) ). [Paul D. Hanna, Jan 01 2011]
O.g.f. A(x) satisfies: [x^n] exp( n * x*A(x) ) / A(x) = 0 for n>0. - Paul D. Hanna, May 25 2018
O.g.f. A(x) satisfies [x^n] exp( n * x*A(x) ) * (1 - n*x) = 0 for n>0. - Paul D. Hanna, Jul 24 2019
From Paul D. Hanna, Jul 20 2018 (Start):
O.g.f. A(x) satisfies:
* [x^n] exp(-n * x*A(x)) * (2 - 1/A(x)) = 0 for n >= 1.
* [x^n] exp(-n^2 * x*A(x)) * (n + 1 - n/A(x)) = 0 for n >= 1.
* [x^n] exp(-n^(p+1) * x*A(x)) * (n^p + 1 - n^p/A(x)) = 0 for n>=1 and for fixed integer p >= 0. (End)
a(n) ~ c * n! * n^2, where c = 0.21795078944715106549282282244231982088... (see A238223). - Vaclav Kotesovec, Feb 21 2014

A300736 O.g.f. A(x) satisfies: A(x) = x*(1 - x*A'(x)) / (1 - 2*x*A'(x)).

Original entry on oeis.org

1, 1, 4, 24, 184, 1672, 17296, 198800, 2499200, 33992000, 496281344, 7731823616, 127946465280, 2240485196800, 41387447564800, 804353715776000, 16408115358117888, 350584123058300928, 7831051680901885952, 182550106828365115392, 4433782438058087202816, 112031844502468602085376, 2940834866411162315849728
Offset: 1

Views

Author

Paul D. Hanna, Mar 17 2018

Keywords

Comments

O.g.f. equals the logarithm of the e.g.f. of A300735.
The e.g.f. G(x) of A300735 satisfies: [x^n] G(x)^(2*n) = (n+1) * [x^(n-1)] G(x)^(2*n) for n>=1.

Examples

			O.g.f.: A(x) = x + x^2 + 4*x^3 + 24*x^4 + 184*x^5 + 1672*x^6 + 17296*x^7 + 198800*x^8 + 2499200*x^9 + 33992000*x^10 + 496281344*x^11 + 7731823616*x^12 + ...
where
A(x) = x*(1 - x*A'(x)) / (1 - 2*x*A'(x)).
RELATED SERIES.
exp(A(x)) = 1 + x + 3*x^2/2! + 31*x^3/3! + 697*x^4/4! + 25761*x^5/5! + 1371691*x^6/6! + 97677343*x^7/7! + 8869533681*x^8/8! + 993709302337*x^9/9! + 134086553693011*x^10/10! + ... + A300735(n)*x^n/n! + ...
A'(x) = 1 + 2*x + 12*x^2 + 96*x^3 + 920*x^4 + 10032*x^5 + 121072*x^6 + 1590400*x^7 + 22492800*x^8 + 339920000*x^9 + 5459094784*x^10 + ...
		

Crossrefs

Programs

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

Formula

O.g.f. A(x) satisfies: [x^n] exp( 2*n * A(x) ) = (n + 1) * [x^(n-1)] exp( 2*n * A(x) ) for n>=1.
a(n) ~ c * n! * n^3, where c = 0.0087891365985... - Vaclav Kotesovec, Mar 20 2018

A300987 O.g.f. A(x) satisfies: A(x) = x*(1 - 2*x*A'(x)) / (1 - 3*x*A'(x)).

Original entry on oeis.org

1, 1, 5, 36, 327, 3489, 42048, 559008, 8073243, 125328411, 2075525505, 36460943208, 676484058564, 13210384019292, 270753854165604, 5810388957096552, 130292809125319539, 3047472204302259711, 74227110587569392471, 1879966895740420683492, 49443968787368161215087, 1348661750106914651234385, 38107004920979745293594856, 1114125483618428275543280400, 33669232396216806674333898900
Offset: 1

Views

Author

Paul D. Hanna, Mar 17 2018

Keywords

Comments

O.g.f. equals the logarithm of the e.g.f. of A300986.
The e.g.f. G(x) of A300986 satisfies: [x^n] G(x)^(3*n) = (n+2) * [x^(n-1)] G(x)^(3*n) for n>=1.

Examples

			O.g.f.: A(x) = x + x^2 + 5*x^3 + 36*x^4 + 327*x^5 + 3489*x^6 + 42048*x^7 + 559008*x^8 + 8073243*x^9 + 125328411*x^10 + 2075525505*x^11 + ...
where
A(x) = x*(1 - 2*x*A'(x)) / (1 - 3*x*A'(x)).
RELATED SERIES.
exp(A(x)) = 1 + x + 3*x^2/2! + 37*x^3/3! + 1009*x^4/4! + 44541*x^5/5! + 2799931*x^6/6! + 233188033*x^7/7! + 24562692897*x^8/8! + 3168510747769*x^9/9! + 488856473079571*x^10/10! + ... + A300986(n)*x^n/n! + ...
A'(x) = 1 + 2*x + 15*x^2 + 144*x^3 + 1635*x^4 + 20934*x^5 + 294336*x^6 + 4472064*x^7 + 72659187*x^8 + 1253284110*x^9 + 22830780555*x^10 + ...
		

Crossrefs

Programs

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

Formula

O.g.f. A(x) satisfies: [x^n] exp( 3*n * A(x) ) = (n + 2) * [x^(n-1)] exp( 3*n * A(x) ) for n>=1.
a(n) ~ c * n! * n^5, where c = 0.00014640560804... - Vaclav Kotesovec, Mar 20 2018

A300988 E.g.f. A(x) satisfies: [x^n] A(x)^(4*n) = (n + 3) * [x^(n-1)] A(x)^(4*n) for n>=1.

Original entry on oeis.org

1, 1, 3, 43, 1369, 69561, 4991371, 471516403, 56029153713, 8112993527089, 1398528216254611, 281935928284459131, 65543089930613822473, 17373185629100099938153, 5201713100466658289659419, 1745470558150260528082445251, 652016607740826946854349450081, 269558306371535265856134699842913, 122707064351998882900943162086492963, 61225312946191234549695844364141862859
Offset: 0

Views

Author

Paul D. Hanna, Mar 17 2018

Keywords

Comments

Compare to: [x^n] exp(x)^(4*n) = 4 * [x^(n-1)] exp(x)^(4*n) for n>=1.

Examples

			E.g.f.: A(x) = 1 + x + 3*x^2/2! + 43*x^3/3! + 1369*x^4/4! + 69561*x^5/5! + 4991371*x^6/6! + 471516403*x^7/7! + 56029153713*x^8/8! + 8112993527089*x^9/9! + ...
such that [x^n] A(x)^(4*n) = (n+3) * [x^(n-1)] A(x)^(4*n) for n>=1.
RELATED SERIES.
A(x)^4 = 1 + 4*x + 24*x^2/2! + 304*x^3/3! + 8320*x^4/4! + 390144*x^5/5! + 26653696*x^6/6! + 2434011136*x^7/7! + 282056564736*x^8/8! + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k in A(x)^(4*n) begins:
n=1: [(1), (4), 12, 152/3, 1040/3, 16256/5, 1665856/45, 152125696/315, ...];
n=2: [1, (8), (40), 592/3, 3728/3, 157376/15, 4992064/45, 86636800/63, ...];
n=3: [1, 12, (84), (504), 3264, 129408/5, 1273536/5, 104486784/35, ...];
n=4: [1, 16, 144, (3104/3), (21728/3), 283264/5, 23764096/45, 1844359168/315, ...];
n=5: [1, 20, 220, 5560/3, (42800/3), (342400/3), 9296960/9, 687731200/63, ...];
n=6: [1, 24, 312, 3024, 25680, (1073856/5), (9664704/5), 690265344/35, ...];
n=7: [1, 28, 420, 13832/3, 129248/3, 1905792/5, (156447424/45), (312894848/9), ...]; ...
in which the coefficients in parenthesis are related by
4 = 4*(1); 40 = 5*(8); 504 = 6*(84); 21728/3 = 7*(3104/3); 342400/3 = 8*(42800/3); 9664704/5 = 9*(1073856/5); ...
illustrating: [x^n] A(x)^(4*n) = (n+3) * [x^(n-1)] A(x)^(4*n).
LOGARITHMIC PROPERTY.
The logarithm of the e.g.f. is an integer power series in x satisfying
log(A(x)) = x * (1 - 3*x*A'(x)/A(x)) / (1 - 4*x*A'(x)/A(x));
explicitly,
log(A(x)) = x + x^2 + 6*x^3 + 50*x^4 + 520*x^5 + 6312*x^6 + 86080*x^7 + 1288704*x^8 + 20862720*x^9 + 361454720*x^10 + ... + A300989(n)*x^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^(4*(#A-1))); A[#A] = ((#A+2)*V[#A-1] - V[#A])/(4*(#A-1)) ); n!*polcoeff( Ser(A), n)}
    for(n=0, 25, print1(a(n), ", "))
    
  • PARI
    {a(n) = my(A=1); for(i=1,n, A = exp( x*(A-3*x*A')/(A-4*x*A' +x*O(x^n)) ) ); n!*polcoeff(A,n)}
    for(n=0, 25, print1(a(n), ", "))

Formula

E.g.f. A(x) satisfies: A(x) = exp( x * (A(x) - 3*x*A'(x)) / (A(x) - 4*x*A'(x)) ).

A300991 O.g.f. A(x) satisfies: A(x) = x * (1 - 4*x*A'(x)) / (1 - 5*x*A'(x)).

Original entry on oeis.org

1, 1, 7, 66, 769, 10405, 157540, 2609120, 46569365, 886686635, 17878075475, 379658470550, 8456459003700, 196924945517500, 4781934837995500, 120830066634026000, 3171336593264680125, 86326557180541530375, 2433904105428495204125, 70991247725936793222750, 2139844431980825211095625, 66589703922949982943093125, 2137375830643389417662717500, 70701647390083655222041600000
Offset: 1

Views

Author

Paul D. Hanna, Mar 19 2018

Keywords

Comments

O.g.f. equals the logarithm of the e.g.f. of A300990.
The e.g.f. G(x) of A300990 satisfies: [x^n] G(x)^(5*n) = (n+4) * [x^(n-1)] G(x)^(5*n) for n>=1.

Examples

			O.g.f.: A(x) = x + x^2 + 7*x^3 + 66*x^4 + 769*x^5 + 10405*x^6 + 157540*x^7 + 2609120*x^8 + 46569365*x^9 + 886686635*x^10 + ...
where
A(x) = x * (1 - 4*x*A'(x)) / (1 - 5*x*A'(x)).
RELATED SERIES.
exp(A(x)) = 1 + x + 3*x^2/2! + 49*x^3/3! + 1777*x^4/4! + 101541*x^5/5! + 8140411*x^6/6! + 855134533*x^7/7! + 112545136929*x^8/8! + 17984228218057*x^9/9! + ... + A300990(n)*x^n/n! + ...
A'(x) = 1 + 2*x + 21*x^2 + 264*x^3 + 3845*x^4 + 62430*x^5 + 1102780*x^6 + 20872960*x^7 + 419124285*x^8 + 8866866350*x^9 + ...
		

Crossrefs

Programs

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

Formula

O.g.f. A(x) satisfies: [x^n] exp( 5*n * A(x) ) = (n + 4) * [x^(n-1)] exp( 5*n * A(x) ) for n>=1.
a(n) ~ c * n! * n^9, where c = 0.00000000758078051425272... - Vaclav Kotesovec, Mar 20 2018

A300993 O.g.f. A(x) satisfies: A(x) = x * (1 - 5*x*A'(x)) / (1 - 6*x*A'(x)).

Original entry on oeis.org

1, 1, 8, 84, 1080, 16056, 266256, 4816080, 93638016, 1937252160, 42339628800, 972303685632, 23365476089856, 585706819083264, 15276194983411200, 413695882240574976, 11612673418376392704, 337392794531354462208, 10133165365696293507072, 314252173854006410465280, 10053170842576476899524608, 331455812860465669006442496
Offset: 1

Views

Author

Paul D. Hanna, Mar 19 2018

Keywords

Comments

O.g.f. equals the logarithm of the e.g.f. of A300992.
The e.g.f. G(x) of A300992 satisfies: [x^n] G(x)^(6*n) = (n+5) * [x^(n-1)] G(x)^(6*n) for n>=1.

Examples

			O.g.f.: A(x) = x + x^2 + 8*x^3 + 84*x^4 + 1080*x^5 + 16056*x^6 + 266256*x^7 + 4816080*x^8 + 93638016*x^9 + 1937252160*x^10 + ...
where
A(x) = x * (1 - 5*x*A'(x)) / (1 - 6*x*A'(x)).
RELATED SERIES.
exp(A(x)) = 1 + x + 3*x^2/2! + 55*x^3/3! + 2233*x^4/4! + 141201*x^5/5! + 12458731*x^6/6! + 1435102663*x^7/7! + 206465053425*x^8/8! + 35963535971233*x^9/9! + ... + A300992(n)*x^n/n! + ...
A'(x) = 1 + 2*x + 24*x^2 + 336*x^3 + 5400*x^4 + 96336*x^5 + 1863792*x^6 + 38528640*x^7 + 842742144*x^8 + 19372521600*x^9 + ...
		

Crossrefs

Programs

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

Formula

O.g.f. A(x) satisfies: [x^n] exp( 6*n * A(x) ) = (n + 5) * [x^(n-1)] exp( 6*n * A(x) ) for n>=1.
a(n) ~ c * n! * n^11, where c = 0.00000000002970897246102814... - Vaclav Kotesovec, Mar 20 2018
Showing 1-6 of 6 results.