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
KEYWORD
easy,nonn,new
AUTHOR
Johannes M.V.A. Koelman, Jan 20 2025
STATUS
approved