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.

A377365 a(n) = least k such that 2n*5^k+1 is prime, or 0 if no prime is reached.

Original entry on oeis.org

1, 2, 1, 1, 2, 1, 1, 2, 3, 1, 4, 2, 1, 2, 1, 3, 8, 1, 1, 1036, 1, 3, 2, 1, 1, 2, 1, 1, 2, 4, 1, 2, 1, 3, 6, 2, 257, 2, 2, 1, 40, 1, 1, 4, 2, 1, 2, 10, 1, 4, 2, 1, 6, 1, 3, 2, 1, 15, 4, 1, 79, 48, 1, 1, 2, 1, 5, 6, 1, 1, 6, 4, 3, 2, 1, 1, 2, 3, 3, 2, 1, 1, 6
Offset: 1

Views

Author

Clark Kimberling, Oct 31 2024

Keywords

Examples

			a(20) = 1036 because 40*5^k+1 is prime for k=1036 and not prime for k=1..1035.
		

Crossrefs

Programs

  • Mathematica
    f[n_, k_] := 2 n*5^k + 1;
    s[n_] := Select[Range[5000], PrimeQ[f[n, #]] &, 1];
    Flatten[Table[s[n], {n, 1, 500}]]