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.

Showing 1-3 of 3 results.

A079346 Primes p such that F(p-(p/5)) is the first Fibonacci number that p divides.

Original entry on oeis.org

2, 3, 5, 7, 11, 19, 23, 31, 43, 59, 67, 71, 79, 83, 103, 127, 131, 163, 167, 179, 191, 223, 227, 239, 251, 271, 283, 311, 359, 367, 379, 383, 419, 431, 439, 443, 463, 467, 479, 487, 491, 499, 503, 523, 547, 571, 587, 599, 607, 631, 643, 647, 659, 683, 719, 727, 739, 751, 787, 823, 827
Offset: 1

Views

Author

Jon Perry, Jan 04 2003

Keywords

Comments

The n-th prime p is in this sequence iff A001602(n) = p-(5/p) (that is the maximum possible value of A001602(n)).

Examples

			7 belongs to this sequence since (7/5) = -1, F(8) = 21 and 7 does not divide F(1) to F(7).
		

Crossrefs

Union of A000057, A106535 and {5}.

Programs

  • PARI
    forprime (p=2,500, wss=p-kronecker(5,p); for(n=1, wss, if( fibonacci(n)%p==0, if( n==wss, print1(p","), break) ) ))

Extensions

Corrected and edited by Max Alekseyev, Nov 23 2007

A079348 Fibonacci(p-(p/5)) is the not the first Fibonacci number that p divides.

Original entry on oeis.org

13, 17, 29, 37, 41, 47, 53, 61, 73, 89, 97, 101, 107, 109, 113, 137, 139, 149, 151, 157, 173, 181, 193, 197, 199, 211, 229, 233, 241, 257, 263, 269, 277, 281, 293, 307, 313, 317, 331, 337, 347, 349, 353, 373, 389, 397, 401, 409, 421, 433, 449, 457, 461
Offset: 1

Views

Author

Jon Perry, Jan 04 2003

Keywords

Examples

			a(1) = 13 as (13/5) = -1, F(14) = 377 = 13 * 29, however F(7) = 13.
		

Crossrefs

Programs

  • PARI
    quad5(x)=if (x%5>1 && x%5<4,-1,1);
    forprime (p=7,500, wss=p-quad5(p); for (n=1, wss,if (fibonacci(n)%p==0,if (n
    				

Extensions

Offset corrected by Amiram Eldar, Jun 22 2024

A079349 p-(p/5) where Fibonacci(p-(p/5)) is not the first Fibonacci number that p divides.

Original entry on oeis.org

14, 18, 28, 38, 40, 48, 54, 60, 74, 88, 98, 100, 108, 108, 114, 138, 138, 148, 150, 158, 174, 180, 194, 198, 198, 210, 228, 234, 240, 258, 264, 268, 278, 280, 294, 308, 314, 318, 330, 338, 348, 348, 354, 374, 388, 398, 400, 408, 420, 434, 448, 458, 460
Offset: 1

Views

Author

Jon Perry, Jan 04 2003

Keywords

Examples

			A079348(1) = 13, (13/5) = -1, hence a(1) = 14.
		

Crossrefs

Programs

  • PARI
    quad5(x)=if (x%5>1 && x%5<4,-1,1);
    forprime (p=7,500, wss=p-quad5(p); for (n=1, wss,if (fibonacci(n)%p==0,if (n
    				

Extensions

Offset corrected by Amiram Eldar, Jun 22 2024
Showing 1-3 of 3 results.