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.

A364680 Smallest initial number k of n consecutive numbers satisfying sigma(k) > sigma(k+1) > ... > sigma(k+n-1).

Original entry on oeis.org

1, 4, 44, 44, 20021154, 20021154
Offset: 1

Views

Author

Seiichi Manyama, Aug 02 2023

Keywords

Crossrefs

Programs

  • PARI
    b(n) = my(k=n); while(sigma(k)>sigma(k+1), k++); k-n+1;
    a(n) = my(k=1); while(b(k)