OFFSET
1,1
COMMENTS
4=2^2, 361=19^2, 6241=79^2 are centered triangular numbers but not squarefree.
EXAMPLE
10 = 2 * 5 which is the 3rd centered triangular number.
46 = 2 * 23 which is the 6th centered triangular number.
85 = 5 * 17 which is the 7th centered triangular number.
MATHEMATICA
Select[Table[3*n*(n-1)/2 + 1, {n, 1, 130}], FactorInteger[#][[;; , 2]] == {1, 1} &] (* Amiram Eldar, Feb 08 2025 *)
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Massimo Kofler, Feb 08 2025
STATUS
approved