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.

A298991 Indices i in A112058 where records of 17*i - 3*A112058(i)/8 occur.

Original entry on oeis.org

2, 5, 13, 21, 24, 32, 40, 43, 51, 1470, 1478, 2701, 12032, 12040, 12048, 12051, 12059, 12067, 12070, 12078, 13301, 14524, 14683, 14691, 14699, 14702, 14710, 14718, 14721, 14729
Offset: 1

Views

Author

A.H.M. Smeets, Jan 31 2018

Keywords

Crossrefs

Programs

  • Python
    i, n, rec = 0, 0, 0
    while n < 1000:
        i = i+1
        if 17*i-3*A112058(i)//8 > rec:
            n, rec = n+1, 17*i-3*A112058(i)//8
            print(n,i)