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.

A159231 Primes p such that 8*p^2-2*p-1 divides Fibonacci(p).

Original entry on oeis.org

37, 97, 577, 727, 1297, 3037, 3067, 4447, 4567, 5557, 7507, 7867, 8647, 9067, 9157, 12967, 17257, 20107, 20407, 21787, 22147, 23677, 25447, 27817, 28687, 29347, 30187, 32587, 33487, 35617, 38377, 42157, 42667, 42967, 43207, 45697, 46447, 47497, 49477
Offset: 1

Views

Author

Arkadiusz Wesolowski, Apr 06 2009

Keywords

Crossrefs

Subsequence of A159259. Supersequence of A215158.

Programs

  • Magma
    [p : p in PrimesUpTo(49477) | IsZero(Fibonacci(p) mod (8*p^2-2*p-1))]; // Arkadiusz Wesolowski, Nov 09 2013
    
  • Mathematica
    Select[Prime@Range[5084], Mod[Fibonacci[#], 8*#^2 - 2*# - 1] == 0 &] (* Arkadiusz Wesolowski, Dec 12 2011 *)
  • PARI
    forprime(p=2, 49477, if(Mod(fibonacci(p), 8*p^2-2*p-1)==0, print1(p, ", "))); \\ Arkadiusz Wesolowski, Nov 09 2013