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.

A300555 Numbers i such that Fibonacci(i) is divisible by i+k for k = 0..7.

Original entry on oeis.org

175472640, 44915270400, 50238568800, 439287521400, 572836904640, 589596638400, 735284012400, 778042465200, 987189789600, 1261551677400, 1297640010240, 1307130728400, 1569978804240, 1979830125000, 2705598768600
Offset: 1

Views

Author

Silvester Resnik, May 19 2018

Keywords

Crossrefs

Programs

  • PARI
    fibomod(n, m) = lift(Mod([0, 1; 1, 1], m)^(n+1))[1, 1];
    isok(n) = prod(k=0, 7, fibomod(n, n+k)==0);