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.

A323218 a(n) = (4*n^3 + 30*n^2 + 50*n)/3 + 1.

Original entry on oeis.org

1, 29, 85, 177, 313, 501, 749, 1065, 1457, 1933, 2501, 3169, 3945, 4837, 5853, 7001, 8289, 9725, 11317, 13073, 15001, 17109, 19405, 21897, 24593, 27501, 30629, 33985, 37577, 41413, 45501, 49849, 54465, 59357, 64533, 70001, 75769, 81845, 88237, 94953, 102001
Offset: 0

Views

Author

Peter Luschny, Jan 26 2019

Keywords

Crossrefs

Column 4 of A323222.

Programs

  • Maple
    a := n -> (4*n^3 + 30*n^2 + 50*n)/3 + 1: seq(a(n), n = 0..40);
  • Mathematica
    Table[(4n^3+30n^2+50n)/3+1,{n,0,40}] (* Harvey P. Dale, May 24 2019 *)