login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A334093
Primes p for which A329697(p) == 3.
9
19, 23, 29, 31, 37, 53, 61, 73, 83, 89, 101, 103, 113, 241, 353, 389, 401, 409, 449, 577, 773, 1097, 1153, 1283, 1361, 1409, 1543, 1553, 1601, 3089, 3329, 5441, 6529, 7681, 13313, 15361, 17477, 18433, 25601, 26113, 49157, 49409, 61441, 82241, 83969, 87041, 98689, 114689, 147457, 295937, 327689, 328961, 417793
OFFSET
1,1
COMMENTS
Primes p of the form of the form A334102(n) + 1, for some n >= 1.
PROG
(PARI)
A329697(n) = if(!bitand(n, n-1), 0, 1+A329697(n-(n/vecmax(factor(n)[, 1]))));
isA334093(n) = (isprime(n)&&(3==A329697(n)));
CROSSREFS
Cf. A329697, A334102, primes in A334103.
Sequence in context: A224534 A073319 A274048 * A120640 A309360 A151768
KEYWORD
nonn
AUTHOR
Antti Karttunen, Apr 14 2020
STATUS
approved