OFFSET
0,2
COMMENTS
a(n+1) is the least integer k > a(n) such that abs(bigomega(k) - bigomega(a(n))) = 1.
Do an infinite number of primes appear in the sequence?
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..10000
FORMULA
a(n) = A071192(a(n-1)). - Pontus von Brömssen, Mar 21 2025
EXAMPLE
Example: 52 = 2*2*13 is a term. 53 is not a term because it has -2 prime factors compared to 52. 54 = 2*3*3*3 is a term because it has +1 factor compared to 52. 55 = 5*11 is not a term because it has -2 factors compared to 54. 56 is not a term because it has the same number of factors as 54.
PROG
(PARI) lista(n)={my(L=List(), p=1, k=0); while(#L<=n, k++; my(t=bigomega(k)); if(abs(t-p)==1, listput(L, k); p=t)); Vec(L)} \\ Andrew Howroyd, Mar 20 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Gordon Hamilton, Mar 19 2025
STATUS
approved
