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.

A178184 Sum 2^((k^2+3k)/2) from k=1 to n.

Original entry on oeis.org

4, 36, 548, 16932, 1065508, 135283236, 34495021604, 17626681066020, 18032025190548004, 36911520172609651236, 151152638972001256489508, 1238091191924352276155613732, 20283647694843594776223406899748
Offset: 1

Views

Author

Artur Jasinski, May 21 2010

Keywords

Comments

Series of the kind m^((k^2+3k)/2) from k=1 to n was studied by Bernoulli and Euler.

Crossrefs

Programs

  • Mathematica
    aa = {}; m = 2; sum = 0; Do[sum = sum + m^((n + 3) n/2); AppendTo[aa, sum], {n, 1, 20}]; aa (*Artur Jasinski*)
    Accumulate[Table[2^((k^2+3k)/2),{k,20}]] (* Harvey P. Dale, Aug 17 2021 *)