A238711 Product of all primes p such that 2n - p is also prime.
2, 3, 15, 105, 35, 231, 2145, 5005, 4641, 53295, 1616615, 119301, 21505, 7436429, 21489, 57998985, 3038795305, 4123, 13844919, 10393190665, 12838371, 299859855, 7292509103495, 12023917269, 70691995, 37198413949697, 62483343, 2769282065, 98755025688454681
Offset: 2
Keywords
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 2..2000
Programs
-
Haskell
a238711 n = product $ filter ((== 1) . a010051') $ map (2 * n -) $ takeWhile (<= 2 * n) a000040_list
-
Mathematica
Table[Times@@Select[Select[Prime[Range[2 n]], # < 2 n &], PrimeQ[2 n - #] &], {n, 2, 30}] (* Robert Price, Apr 26 2025 *)
Comments