A275246 Sequence of pairwise relatively prime numbers of class P_3 (see comment).
8, 15, 77, 221, 437, 899, 1517, 2021, 3127, 4087, 5183, 6557, 8633, 10403, 11663, 14351, 17947, 20711, 23707, 27221, 30967, 34571, 38021, 41989, 50621, 53357, 57599, 64507, 70747, 75067, 79523, 89951, 97343, 104927, 116939, 123197, 131753, 141367, 148987
Offset: 1
Keywords
Programs
-
Mathematica
k = 3; {2 (k + 1)}~Join~Map[Times @@ # &, Partition[Prime@ Range[k - 1, 78], 2, 2]] (* Michael De Vlieger, Jul 21 2016 *)
-
PARI
a(n)=if(n==1, 8, prime(2*n-2)*prime(2*n-1)) \\ Bill McEachen, Nov 26 2024
Formula
a(n) = prime(2*n-2)*prime(2*n-1), n>1, a(1)=8. - Bill McEachen, Nov 26 2024
Comments