proposed
approved
proposed
approved
editing
proposed
Dmytro S. Inosov and Emil Vlasák, <a href="https://arxiv.org/abs/2410.21427">Cryptarithmically unique terms in integer sequences</a>, arXiv:2410.21427 [math.NT], 2024. See p. 18.
approved
editing
editing
approved
Primes of the form (10^k - 1)/9. Also called repunit primes or repdigit primes.
A116692 is another version of repunit primes or repdigit primes. - N. J. A. Sloane, Jan 22 2023
Name expanded by N. J. A. Sloane, Jan 22 2023
approved
editing
(MAGMAMagma) [a: n in [0..300] | IsPrime(a) where a is (10^n - 1) div 9 ]; // Vincenzo Librandi, Nov 08 2014
proposed
approved
editing
proposed
(Python)
from sympy import isprime
from itertools import count, islice
def agen(): # generator of terms
yield from (t for t in (int("1"*k) for k in count(1)) if isprime(t))
print(list(islice(agen(), 4))) # Michael S. Branicky, Jun 09 2022
approved
editing
editing
approved