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.

A121644 Slowest increasing sequence with squarefree cumulative sums.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 8, 9, 13, 14, 17, 19, 21, 23, 25, 27, 29, 31, 33, 36, 39, 41, 43, 44, 45, 48, 49, 50, 52, 53, 59, 61, 63, 64, 65, 67, 68, 69, 72, 73, 75, 77, 82, 84, 86, 87, 88, 89, 91, 92, 93, 94, 96, 98, 99, 100, 101, 102, 104, 106, 108, 110, 116, 117, 119, 120, 121, 123
Offset: 1

Views

Author

Zak Seidov, Aug 13 2006

Keywords

Crossrefs

Cf. A084693 (non-monotonic version).

Programs

  • Mathematica
    a = {1}; Do[k = 1; While[Nand[k > a[[n]], SquareFreeQ[Sum[a[[i]], {i, n}] + k]], k++]; AppendTo[a, k], {n, 67}]; a (* Michael De Vlieger, Sep 03 2015 *)