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

A370836 Expansion of (1/x) * Series_Reversion( x/(x+1/(1+x^2)) ).

Original entry on oeis.org

1, 1, 0, -2, -2, 6, 19, 1, -98, -170, 268, 1464, 967, -7253, -19035, 11497, 142894, 186814, -592148, -2327480, -371472, 14922592, 30367918, -44517534, -291059645, -242260229, 1550840094, 4611423196, -2050694753, -36095033685, -54276040088, 150373292998
Offset: 0

Views

Author

Seiichi Manyama, Mar 03 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(serreverse(x/(x+1/(1+x^2)))/x)
    
  • PARI
    a(n) = sum(k=0, n\2, (-1)^k*binomial(n, 2*k)*binomial(3*k, k)/(2*k+1));

Formula

a(n) = Sum_{k=0..floor(n/2)} (-1)^k * binomial(n,2*k) * binomial(3*k,k)/(2*k+1).

A370838 Expansion of (1/x) * Series_Reversion( x/(x+1/(1+x^4)) ).

Original entry on oeis.org

1, 1, 1, 1, 0, -4, -14, -34, -64, -80, 16, 496, 1946, 5266, 10830, 14886, -884, -92564, -390404, -1113380, -2405649, -3529749, -360799, 20509101, 91770476, 271807476, 608858576, 941203576, 243522996, -4977842140, -23564569004, -72054072364, -166314098964
Offset: 0

Views

Author

Seiichi Manyama, Mar 03 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(serreverse(x/(x+1/(1+x^4)))/x)
    
  • PARI
    a(n) = sum(k=0, n\4, (-1)^k*binomial(n, 4*k)*binomial(5*k, k)/(4*k+1));

Formula

a(n) = Sum_{k=0..floor(n/4)} (-1)^k * binomial(n,4*k) * binomial(5*k,k)/(4*k+1).
Showing 1-2 of 2 results.