[go: up one dir, main page]

login
A372188
Numbers m such that 18*m + 1, 36*m + 1, 108*m + 1, and 162*m + 1 are all primes.
5
1, 71, 155, 176, 241, 346, 420, 540, 690, 801, 1145, 1421, 1506, 2026, 2066, 3080, 3235, 3371, 3445, 3511, 3640, 4746, 4925, 5681, 5901, 6055, 6520, 7931, 8365, 8970, 9006, 9556, 9685, 10186, 11396, 11750, 11935, 12055, 12666, 13205, 13266, 13825, 13881, 14606
OFFSET
1,2
COMMENTS
If m is a term, then (18*m + 1) * (36*m + 1) * (108*m + 1) * (162*m + 1) is a Carmichael number (A002997). These are the Carmichael numbers of the form W_4(3*m) in Nakamula et al. (2007).
The corresponding Carmichael numbers are 12490201, 288503529142321, 6548129556412321, ...
LINKS
Ken Nakamula, Hirofumi Tsumura, and Hiroaki Komai, New polynomials producing absolute pseudoprimes with any number of prime factors, arXiv:math/0702410 [math.NT], 2007.
EXAMPLE
1 is a term since 18*1 + 1 = 19, 36*1 + 1 = 37, 108*1 + 1 = 109, and 162*1 + 1 = 163 are all primes.
71 is a term since 18*71 + 1 = 1279, 36*71 + 1 = 2557, 108*71 + 1 = 7669, and 162*71 + 1 = 11503 are all primes.
MATHEMATICA
q[n_] := AllTrue[{18, 36, 108, 162}, PrimeQ[#*n + 1] &]; Select[Range[15000], q]
PROG
(PARI) is(n) = isprime(18*n + 1) && isprime(36*n + 1) && isprime(108*n + 1) && isprime(162*n + 1);
CROSSREFS
Similar sequences: A046025, A257035, A206024, A206349, A372186, A372187.
Sequence in context: A046004 A044322 A044703 * A142277 A063330 A142344
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Apr 21 2024
STATUS
approved