A355706
Indices k of partition function p where p(k) is a twin prime.
Original entry on oeis.org
3, 4, 5, 6, 13, 186, 3542, 2335166
Offset: 1
13 is a term because A000041(13) = 101 is prime and 101 and 103 are twin primes.
-
for(n=1, 3600, if(ispseudoprime(p=numbpart(n))&&(ispseudoprime(p-2)||ispseudoprime(p+2)), print1(n, ", ")))
A355705
Indices k of partition function p where p(k) and p(k) - 2 are twin primes.
Original entry on oeis.org
4, 5, 186, 3542
Offset: 1
4 is a term because A000041(4) = 5, and 3 and 5 are twin primes.
5 is a term because A000041(5) = 7, and 5 and 7 are twin primes.
-
for(n=1, 3600, if(ispseudoprime(p=numbpart(n))&&ispseudoprime(p-2), print1(n, ", ")))
A355728
Indices k of partition function where consecutive p(k) and p(k+1) are prime.
Original entry on oeis.org
2, 3, 4, 5, 1085
Offset: 1
5 is in the sequence because A000041(5) = 7 and A000041(6) = 11 are prime.
-
for(k=1, 5000, if(ispseudoprime(numbpart(k))&&ispseudoprime(numbpart(k+1)), print1(k, ", ")))
A355956
Index k of partition function p such that p(k) is a member of a cousin prime pair.
Original entry on oeis.org
3, 5, 6, 13, 36, 157, 302, 546, 2502, 2732, 19439060
Offset: 1
5 is in the sequence because A000041(5) = 7 and 7 + 4 = 11 are cousin primes.
13 is in the sequence because A000041(13) = 101 and 101 - 4 = 97 are cousin primes.
-
for(n=1, 10000, if(ispseudoprime(p=numbpart(n))&&(ispseudoprime(p-4)||ispseudoprime(p+4)), print1(n, ", ")))
Showing 1-4 of 4 results.
Comments