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.

A256512 n*(1+(2*n)^n).

Original entry on oeis.org

0, 3, 34, 651, 16388, 500005, 17915910, 737894535, 34359738376, 1785233613321, 102400000000010, 6427501315524619, 438244169232678924, 32254987351648575501, 2548827677619195478030, 215233605000000000000015, 19342813113834066795298832
Offset: 0

Views

Author

Reinhard Zumkeller, Mar 31 2015

Keywords

Comments

a(n) = A108396(2*n,n): central terms of the triangle A108396.

Crossrefs

Programs

  • Haskell
    a256512 n = n * (1 + (2 * n) ^ n)
  • Mathematica
    Join[{0},Table[n(1+(2n)^n),{n,20}]] (* Harvey P. Dale, Aug 05 2021 *)