A374823 Primes p such that p-1 is refactorable.
2, 3, 13, 19, 37, 41, 61, 73, 89, 97, 109, 137, 157, 181, 229, 233, 241, 277, 349, 373, 397, 449, 569, 601, 613, 641, 673, 709, 733, 809, 829, 853, 857, 877, 881, 883, 937, 997, 1049, 1069, 1097, 1117, 1153, 1193, 1201, 1213, 1237, 1249, 1361, 1409, 1433, 1549, 1621, 1657, 1669, 1693, 1789, 1801
Offset: 1
Keywords
Examples
a(4) = 19 is a term because 19 is prime and 18 is divisible by A000005(18) = 6.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Maple
filter:= p -> isprime(p) and (p-1) mod numtheory:-tau(p-1) = 0: select(filter, [2, seq(i,i=3..10000,2)]);
Comments