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.

A270890 Numbers k such that (8*10^k + 49)/3 is prime.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 10, 24, 33, 34, 35, 45, 52, 56, 62, 65, 103, 166, 424, 886, 1418, 1825, 4895, 5715, 7011, 7810, 9097, 12773, 14746, 20085, 25359, 27967, 46629, 48507, 68722, 74944, 102541, 118960, 157368
Offset: 1

Views

Author

Robert Price, Mar 25 2016

Keywords

Comments

For k > 2, numbers k such that the digit 2 followed by k-3 occurrences of the digit 6 followed by the digits 83 is prime (see Example section).
a(41) > 3*10^5.

Examples

			3 is in this sequence because (8*10^3 + 49)/3 = 2683 is prime.
Initial terms and associated primes:
a(1) = 0, 19;
a(2) = 1, 43;
a(3) = 2, 283;
a(4) = 3, 2683;
a(5) = 4, 26683;
a(6) = 5, 266683, etc.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 100000], PrimeQ[(8*10^# + 49)/3] &]
  • PARI
    is(n)=isprime((8*10^n + 49)/3) \\ Charles R Greathouse IV, Feb 16 2017

Extensions

a(38)-a(40) from Robert Price, May 23 2020