OFFSET
1,1
COMMENTS
a(n) == 1 (mod 4).
EXAMPLE
1105 = 5 * 13* 17 which is the 24-th centered square number.
18241 = 17 * 29 * 37 which is the 96-th centered square number.
32513 = 13 * 41 * 61 which is 128-th centered square number.
MATHEMATICA
Select[Table[2*n*(n+1) + 1, {n, 0, 250}], FactorInteger[#][[;; , 2]] == {1, 1, 1} &] (* Amiram Eldar, Feb 07 2025 *)
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Massimo Kofler, Feb 07 2025
STATUS
approved