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.

A065057 Partial sums of A064413.

Original entry on oeis.org

0, 1, 3, 7, 13, 16, 25, 37, 45, 55, 60, 75, 93, 107, 114, 135, 159, 175, 195, 217, 228, 261, 288, 318, 343, 378, 406, 432, 445, 484, 520, 552, 586, 603, 654, 696, 734, 753, 810, 855, 895, 939, 985, 1008, 1077, 1125, 1175, 1227, 1281, 1337, 1386
Offset: 0

Views

Author

N. J. A. Sloane, Nov 07 2001

Keywords

Programs

  • Mathematica
    terms = 50;
    ekg[s_] := Block[{m = s[[-1]], k = 3}, While[MemberQ[s, k] || GCD[m, k] == 1, k++]; Append[s, k]];
    EKG = Nest[ekg, {1, 2}, terms-2];
    Prepend[Accumulate[EKG], 0] (* Jean-François Alcover, Sep 02 2018, after Robert G. Wilson v in A064413 *)