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.

A383569 Expansion of 1/sqrt((1-x^7)^2 - 4*x^2).

Original entry on oeis.org

1, 0, 2, 0, 6, 0, 20, 1, 70, 6, 252, 30, 924, 140, 3433, 630, 12882, 2772, 48710, 12012, 185316, 51481, 708582, 218810, 2720788, 923990, 10484684, 3881556, 40528441, 16236486, 157086660, 67675972, 610318610, 281236620, 2376289056, 1165715161, 9269869182
Offset: 0

Views

Author

Seiichi Manyama, Apr 30 2025

Keywords

Comments

Number of lattice paths from (0,0) to (n,n) using steps (2,0),(0,2),(7,7).
Diagonal of the rational function 1 / (1 - x^2 - y^2 - x^7*y^7).
Diagonal of the rational function 1 / ((1-x^2*y)*(1-x^5*y^6) - y).

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[1/Sqrt[(1-x^7)^2-4x^2],{x,0,40}],x] (* Harvey P. Dale, Aug 09 2025 *)
  • PARI
    my(N=40, x='x+O('x^N)); Vec(1/sqrt((1-x^7)^2-4*x^2))