OFFSET
1,1
COMMENTS
Unlike A105403, this sequence appears to be infinite.
Dickson's conjecture would imply that there are infinitely many p such that p, p+6, 2*p+1 and 2*p+13 are prime and there are no primes between 2*p+1 and 2*p+13. Then n is in the sequence where 2*p+1=prime(n). - Robert Israel, Jun 30 2015
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
The prime factors of prime(5)-1 are 2,5. The prime factors of prime(6)-1 are 2,3,3 and they have the same number of distinct prime factors.
MAPLE
N:= 2000: # to use primes <= N
Primes:= select(isprime, [2, seq(2*i+1, i=1..floor((N-1)/2))]):
npf:= map(t -> nops(numtheory:-factorset(Primes[t]-1)), [$1..nops(Primes)]):
select(t -> npf[t+1]=npf[t], [$1..nops(Primes)-1]); # Robert Israel, Jun 30 2015
MATHEMATICA
Select[Range@ 173, PrimeNu[Prime[#] - 1] == PrimeNu[Prime[# + 1] - 1] &] (* Michael De Vlieger, Jul 01 2015 *)
PROG
(PARI) lista(nn) = {forprime(p=2, nn, if (omega(p-1)==omega(nextprime(p+1)-1), print1(primepi(p), ", ")); ); } \\ Michel Marcus, Jul 01 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved