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.

A262708 a(n) = p-(p/5) where p = prime(n) and (p/5) is a Legendre symbol.

Original entry on oeis.org

8, 10, 14, 18, 18, 24, 28, 30, 38, 40, 44, 48, 54, 58, 60, 68, 70, 74, 78, 84, 88, 98, 100, 104, 108, 108, 114, 128, 130, 138, 138, 148, 150, 158, 164, 168, 174, 178, 180, 190, 194, 198, 198, 210, 224, 228, 228, 234, 238, 240, 250, 258, 264, 268, 270, 278, 280
Offset: 4

Views

Author

Shane Findley, Sep 27 2015

Keywords

Comments

The sequence lists Fibonacci indices q that are conjectured to produce Fibonacci numbers divisible by p^2, where p is a Fibonacci-Wieferich prime.

Examples

			For n=4, prime(4)=7, and a(4)=8.
		

References

  • Paulo Ribenboim, My Numbers, My Friends, Springer-Verlag, 2000.
  • Steven Vajda, Fibonacci and Lucas Numbers, and the Golden Section: Theory and Applications, Dover. (See p. 73.)

Crossrefs

Programs

  • Mathematica
    Table[Prime@ n - JacobiSymbol[Prime@ n, 5], {n, 4, 60}] (* Michael De Vlieger, Oct 04 2015 *)
  • PARI
    lista(nn)=forprime(p=3, nn, print1(p-kronecker(p, 5), ", ");); \\ Michel Marcus, Sep 29 2015

Extensions

Edited by N. J. A. Sloane, Sep 29 2015
Edited by Jon E. Schoenfield, Oct 09 2015