login
A143243
a(n) = the smallest multiple of the n-th prime such that (a(n)+1) is divisible by both the (n-1)th prime and the (n+1)st prime.
1
9, 20, 329, 363, 1495, 493, 2736, 12121, 8555, 19313, 25419, 7954, 30831, 102554, 69324, 174581, 19764, 229542, 303241, 33653, 139356, 267177, 611875, 26966, 629432, 972629, 449079, 822187, 27685, 503301, 1043939, 1037912, 2694515
OFFSET
2,1
MATHEMATICA
a[n_]:=Module[{i=1}, Until[Divisible[p+1, Prime[n-1]]&&Divisible[p+1, Prime[n+1]], i++; p=Prime[n]*i]; p]; Array[a, 33, 2] (* James C. McMahon, Aug 18 2025 *)
CROSSREFS
Cf. A143244.
Sequence in context: A282763 A013338 A008847 * A157812 A218164 A161326
KEYWORD
nonn
AUTHOR
Leroy Quet, Aug 01 2008
EXTENSIONS
Extended by Ray Chandler, Aug 08 2008
STATUS
approved