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.

A171113 a(n) is the Severi degree for curves of degree n and cogenus 3.

Original entry on oeis.org

0, 0, 15, 675, 7915, 41310, 145383, 404185, 959115, 2029980, 3939295, 7139823, 12245355, 20064730, 31639095, 48282405, 71625163, 103661400, 146798895, 203912635, 278401515, 374248278, 496082695, 649247985, 839870475, 1074932500, 1362348543, 1711044615
Offset: 1

Views

Author

N. J. A. Sloane, Sep 27 2010

Keywords

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{7,-21,35,-35,21,-7,1},{0,0,15,675,7915,41310,145383,404185,959115},30] (* Harvey P. Dale, Jun 15 2021 *)
  • Python
    [0, 0] + [(9*d**6 + 9*d**4 + 423*d**3 - 829*d)//2 - 27*d**5 - 229*d**2 + 525 for d in range(3, 30)] # Andrey Zabolotskiy, Jan 12 2021

Formula

a(n) = 9*n^6/2 - 27*n^5 + 9*n^4/2 + 423*n^3/2 - 229*n^2 - 829*n/2 + 525 for n > 2. - Andrey Zabolotskiy, Jan 19 2021

Extensions

Terms a(7) and beyond from Andrey Zabolotskiy, Jan 12 2021