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.

A337791 6-Wall-Sun-Sun primes: primes p such that p^2 divides F_6(A175185(p)), where F_6(i) is the i-th 6-Fibonacci number.

Original entry on oeis.org

191, 643, 134339, 25233137
Offset: 1

Views

Author

Felix Fröhlich, Dec 23 2020

Keywords

Crossrefs

Cf. A175185, A238736 (2-Wall-Sun-Sun primes), A271782 (smallest n-Wall-Sun-Sun prime).

Programs

  • PARI
    my(b=6); forprime(p=2, , if( (([0, 1; 1, b]*Mod(1, p^2))^(p-kronecker(b^2+4, p)))[1, 2]==0, print1(p, ", "); ); );