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.

User: So Jung Kim

So Jung Kim's wiki page.

So Jung Kim has authored 1 sequences.

A282853 36-gonal numbers: a(n) = n*(17*n-16).

Original entry on oeis.org

0, 1, 36, 105, 208, 345, 516, 721, 960, 1233, 1540, 1881, 2256, 2665, 3108, 3585, 4096, 4641, 5220, 5833, 6480, 7161, 7876, 8625, 9408, 10225, 11076, 11961, 12880, 13833, 14820, 15841, 16896, 17985, 19108, 20265, 21456, 22681, 23940, 25233
Offset: 0

Author

So Jung Kim, Feb 23 2017

Keywords

Crossrefs

Programs

  • Mathematica
    Table[n(34n-32)/2, {n,50}]
    PolygonalNumber[36,Range[0,50]] (* or *) LinearRecurrence[{3,-3,1},{0,1,36},50] (* Harvey P. Dale, Apr 18 2025 *)
  • PARI
    for(n=0,100,print1(n*(17*n-16),", ")) \\ Derek Orr, Feb 27 2017

Formula

From Nikolaos Pantelidis, Feb 09 2023 : (Start)
G.f.: x*(1 + 33*x)/(1 - x)^3.
E.g.f.: exp(x)*(x + 17*x^2). (End)