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.

A360542 Primes prime(k) such that ( 9*(prime(k-1) - prime(k-2)) ) | (prime(k)^3 + 1).

Original entry on oeis.org

5, 11, 17, 23, 47, 71, 107, 113, 131, 149, 179, 191, 197, 233, 239, 251, 269, 293, 311, 317, 353, 359, 431, 467, 479, 503, 521, 557, 647, 683, 719, 797, 809, 821, 827, 839, 857, 863, 881, 887, 947, 953, 971, 1019, 1031, 1061, 1097, 1103, 1151, 1163, 1223, 1259
Offset: 1

Views

Author

Najeem Ziauddin, Feb 11 2023

Keywords

Examples

			11 is a term since (11^3 + 1)/(9*(7-5)) = 1332/18 = 74.
131 is a term since (131^3 + 1)/(9*(127-113)) = 2248092/126 = 17842.
		

Crossrefs

Programs

  • Mathematica
    Select[Partition[Prime[Range[210]], 3, 1], Divisible[(#[[3]]^3 + 1)/9, #[[2]] - #[[1]]] &][[;; , 3]] (* Amiram Eldar, Feb 11 2023 *)