login
A380312
Primes not reaching 3 under iterations of p -> gpf(2*p-1).
0
19, 29, 37, 67, 73, 101, 131, 167, 181, 197, 211, 241, 251, 257, 317, 389, 421, 463, 479, 503, 523, 599, 643, 653, 691, 719, 739, 811, 827, 859, 887, 907, 919, 941, 983, 1039, 1061, 1069, 1109, 1117, 1217, 1277, 1283, 1289, 1307, 1361, 1381, 1427, 1429, 1499
OFFSET
1,1
COMMENTS
It appears that this is the primes reaching 19 under iterations of p -> gpf(2*p-1).
Conjecture: a(n) ~ k*n log n for some constant k. Perhaps k ≈ 4.51. - Charles R Greathouse IV, Jan 24 2025
EXAMPLE
19, 37, 73 and 29 are in the sequence as they form a loop under the iteration.
PROG
(PARI) \\ This will loop forever if it hits a loop other than 3 or 19, but if it returns the result is correct.
gpf(n)=my(f=factor(n)[, 1]); f[#f]
is(p)=while(p>28, p=gpf(2*p-1)); p==19 \\ Charles R Greathouse IV, Jan 24 2025
CROSSREFS
Sequence in context: A370139 A139539 A191047 * A047985 A061763 A088474
KEYWORD
easy,nonn,new
AUTHOR
STATUS
approved