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.

A372933 Records in A071961, divided by 2.

Original entry on oeis.org

0, 1, 2, 3, 4, 10, 21, 27, 55, 78, 136, 171, 253, 406, 465, 666, 820, 903, 1081, 1378, 1711, 1830, 2211, 2485, 2628, 3081, 3403, 3916, 4656, 5050, 5253, 5671, 5886, 6328, 6655, 8001, 8515, 9316, 9591, 11026, 11325, 12246, 13203, 13861, 14878, 15931, 16290, 18145, 18528
Offset: 1

Views

Author

Hugo Pfoertner, May 17 2024

Keywords

Crossrefs

A372934 are the corresponding positions in A071961.
Cf. A372728.

Programs

  • PARI
    a372933(upto) = {my (m=-oo); for (n=0, 2*upto, my (s = sum(k=0, n, kronecker(n,k))); if (s>m, print1(s/2,", "); m=s))};
    a372933(10000)