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

A067145 Shifts left under reversion.

Original entry on oeis.org

1, 1, -1, 3, -13, 69, -419, 2809, -20353, 157199, -1281993, 10963825, -97828031, 907177801, -8716049417, 86553001779, -886573220093, 9351927111901, -101447092428243, 1130357986741545, -12923637003161409, 151479552582252239, -1818756036793636033
Offset: 1

Views

Author

Christian G. Bower, Jan 03 2002

Keywords

Crossrefs

Cf. A107094.
Apart from signs, same as A088714. - Philippe Deléham, Jun 18 2006

Programs

  • Mathematica
    Nest[InverseSeries[#] x + x &, x + O[x]^2, 50][[3]] (* Vladimir Reshetnikov, Aug 07 2019 *)
  • Maxima
    T(n,m):=if n=m then 1 else m/n*sum(T(n-m,k)*(-1)^k*binomial(k+n-1,n-1), k,1,n-m); a(n):=if n=1 then 1 else T(n-1,1); /* Vladimir Kruchinin, May 06 2012 */
  • PARI
    {a(n)=local(A); if(n<1, 0, A=x+O(x^2); for(i=2,n, A=x*(1+serreverse(A))); polcoeff(A,n))} /* Michael Somos, May 21 2005 */
    

Formula

G.f. satisfies A^(-1)(x) = A(x)/x - 1.
G.f. satisfies: A(A(x)) = (1+x)*A(x) = g.f. of A107094. - Paul D. Hanna, May 12 2005
G.f. A(x) satisfies 0=f(x, A(x), A(A(x))) where f(a0,a1,a2) = a1 - a2 + a0*a1. - Michael Somos, May 21 2005
a(n) = T(n-1,1), n > 1, a(1) = 1, T(n,m) = (m/n) * Sum_{k=1..n-m} T(n-m,k) * (-1)^k * binomial(k+n-1, n-1), n > m, T(n,n) = 1. - Vladimir Kruchinin, May 06 2012

A309564 Shifts left by 3 places under series reversion.

Original entry on oeis.org

1, 1, 1, 1, -1, 1, -1, 3, -15, 59, -189, 567, -1863, 7141, -29817, 125919, -528329, 2238303, -9769917, 44312225, -208177669, 1005840685, -4972561375, 25105651267, -129470605611, 682486916465, -3678964401327, 20276967904907, -114199064797229, 656666370592173
Offset: 1

Views

Author

Vladimir Reshetnikov, Aug 08 2019

Keywords

Comments

Series reversion of the g.f. gives the same sequence with three initial terms (1, 1, 1) dropped.

Crossrefs

Programs

  • Mathematica
    Nest[InverseSeries[#] x^3 + x^3 + x^2 + x &, x + O[x]^2, 10][[3]]

Formula

G.f. satisfies A((A(x) - x - x^2 - x^3)/x^3) = x.

A309637 G.f. satisfies A((A(x) - x)/x^2) = x, this sequence gives the coefficients at odd powers only.

Original entry on oeis.org

1, 1, -1, 4, -24, 179, -1542, 14779, -154147, 1724785, -20499916, 256971448, -3379187370, 46424470573, -664168673391, 9868894159044, -151977742507208, 2421172940293208, -39841228681799385, 676261674504977841, -11826431722547287115, 212855326803518472588, -3938986085164523720874
Offset: 1

Views

Author

Vladimir Reshetnikov, Aug 10 2019

Keywords

Comments

The g.f. given by A((A(x) - x)/x^2) = x generates aerated sequence [1, 0, 1, 0, -1, 0, 4, 0, -24, ...], which shifts left by 2 places under g.f. series reversion. In this it is similar to A309254, but unlike A309254 (which starts with [1, 1, ...]), this aerated sequence starts with [1, 0, ...].

Examples

			The series reversion of x + x^3 - x^5 + 4*x^7 - 24*x^9 + ... is x - x^3 + 4*x^5 - 24*x^7 + ...
		

Crossrefs

Programs

  • Mathematica
    Nest[InverseSeries[#] x^2 + x &, x + O[x]^2, 30][[3, ;; ;; 2]]
Showing 1-3 of 3 results.