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-1 of 1 results.

A350592 Integers m such that b(m) := 20^m*(5^(m+1) - 1)/4 + (20^m - 1)/19 is a prime.

Original entry on oeis.org

2, 4, 5, 7, 9, 13, 85, 222, 249, 1843
Offset: 1

Views

Author

Ya-Ping Lu, Jan 07 2022

Keywords

Comments

b(m) = Sum_{i=0..2m} 2^(m - |m - i|)*10^i.
a(11) > 5000. - Michael S. Branicky, Jun 07 2022
a(11) > 50000. - Michael S. Branicky, Dec 21 2024

Examples

			m            b(m)          n    a(n)
--   -------------------   --   ----
0             1
1            121
2           12421          1     2
3          1248421
4         124968421        2     4
5        12499368421       3     5
6       1249987368421
7      124999747368421     4     7
8     12499994947368421
9    1249999898947368421   5     9
		

Crossrefs

Programs

  • Mathematica
    Select[Range[250], PrimeQ[20^# * (5^(# + 1) - 1)/4 + (20^# - 1)/19] &] (* Amiram Eldar, Jan 08 2022 *)
  • Python
    from sympy import isprime; {print(m, end = ', ') for m in range(2000) if isprime(20**m*(5**(m+1) - 1)//4 + (20**m - 1)//19)}
Showing 1-1 of 1 results.