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.

A345983 Partial sums of A344005.

Original entry on oeis.org

1, 2, 4, 7, 11, 13, 19, 26, 34, 38, 48, 51, 63, 69, 74, 89, 105, 113, 131, 135, 141, 151, 173, 181, 205, 217, 243, 250, 278, 283, 313, 344, 355, 371, 385, 393, 429, 447, 459, 474, 514, 520, 562, 573, 582, 604, 650, 665, 713, 737, 754, 766, 818, 844, 854, 861, 879, 907, 965, 980, 1040, 1070
Offset: 1

Views

Author

N. J. A. Sloane, Jul 09 2021

Keywords

Crossrefs

Programs

  • Mathematica
    spm[n_]:=Module[{m=1},While[!Divisible[m(m+1),n],m++];m]; Accumulate[ Array[ spm,100]] (* Harvey P. Dale, Dec 04 2022 *)