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.

A287351 Numbers k such that (10^k*361 - 163)/9 is prime (k > 0).

Original entry on oeis.org

1, 3, 9, 15, 27, 37, 165, 207, 897, 5761, 16753, 17995, 96567
Offset: 1

Views

Author

Mikk Heidemaa, May 23 2017

Keywords

Comments

a(14) > 10^5. - Robert Price, Oct 31 2017

Examples

			If k = 1 then (10^1*361 - 163)/9 = 383 (prime), so 1 is a term.
If k = 9 then (10^9*361 - 163)/9 = 40111111093 (prime), so 9 is a term.
		

Crossrefs

Cf. A247643.

Programs

  • Mathematica
    ParallelMap[ If[ PrimeQ[ (10^# 361-163)/9], #, Nothing] &, Range[6000]]

Extensions

a(13) from Robert Price, Oct 31 2017