login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Centered square numbers which are products of four distinct primes (or tetraprimes).
0

%I #13 Mar 06 2024 15:46:29

%S 99905,107185,242905,350285,363805,372385,433381,569245,590785,630565,

%T 692665,752765,907205,942565,1026745,1076045,1090765,1105585,1227745,

%U 1275205,1333345,1467185,1526005,1647113,1661665,1761565,1810705,1911013,2026085,2317705,2395861,2470865

%N Centered square numbers which are products of four distinct primes (or tetraprimes).

%C All terms are odd.

%F a(n) == 1 (mod 4).

%e 99905 = 5 * 13 * 29 * 53 = (2 * 223 * 224) + 1.

%e 107185 = 5 * 13 * 17 * 97 = (2 * 231 * 232) + 1.

%e 242905 = 5 * 13 * 37 * 101 = (2 * 348 * 349) + 1

%t Select[Table[2*n*(n + 1) + 1, {n, 0, 1200}], FactorInteger[#][[;; , 2]] == {1, 1, 1, 1} &] (* _Amiram Eldar_, Mar 02 2024 *)

%Y Intersection of A046386 and A001844.

%K nonn

%O 1,1

%A _Massimo Kofler_, Mar 02 2024