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.

A019563 Coordination sequence for C_7 lattice.

Original entry on oeis.org

1, 98, 1666, 12642, 59906, 209762, 596610, 1459810, 3188738, 6376034, 11879042, 20889442, 35011074, 56345954, 87588482, 132127842, 194158594, 278799458, 392220290, 541777250, 736156162, 985524066
Offset: 0

Views

Author

Michael Baake (mbaake(AT)sunelc3.tphys.physik.uni-tuebingen.de)

Keywords

Crossrefs

Cf. A008415.

Programs

  • Magma
    m:=30; R:=PowerSeriesRing(Integers(), m); Coefficients(R!( (x+1)*(1+90*x+911*x^2+2092*x^3+911*x^4 + 90*x^5+x^6)/(1-x)^7 )); // G. C. Greubel, Dec 08 2018
    
  • Maple
    seq(coeff(series((x+1)*(1+90*x+911*x^2+2092*x^3+911*x^4+90*x^5+x^6)/(1-x)^7,x,n+1), x, n), n = 0 .. 30); # Muniru A Asiru, Dec 08 2018
  • Mathematica
    Join[{1}, LinearRecurrence[{7, -21, 35, -35, 21, -7, 1}, {98, 1666, 12642, 59906, 209762, 596610, 1459810}, 21]] (* Jean-François Alcover, Dec 08 2018 *)
  • PARI
    my(x='x+O('x^30)); Vec((x+1)*(1+90*x+911*x^2+2092*x^3+911*x^4 + 90*x^5+x^6)/(1-x)^7) \\ G. C. Greubel, Dec 08 2018
    
  • Sage
    s=((x+1)*(1+90*x+911*x^2+2092*x^3+911*x^4 + 90*x^5+x^6)/(1-x)^7 ).series(x, 30); s.coefficients(x, sparse=False) # G. C. Greubel, Dec 08 2018

Formula

G.f.: (x + 1)*(1 + 90*x + 911*x^2 + 2092*x^3 + 911*x^4 + 90*x^5 + x^6)/(1 - x)^7.
a(n) = A008415(2*n). - Seiichi Manyama, Jun 08 2018