OFFSET
1,2
COMMENTS
If A173143(k) is a square, then k is a term of the sequence.
FORMULA
EXAMPLE
The first 14 squarefree integers are 1, 2, 3, 5, 6, 7, 10, 11, 13, 14, 15, 17, 19, 21 whose sum is 144 = 12^2. So, 14 is a term.
PROG
(PARI) list(lim) = my(sm = 0, n = 0); forsquarefree(k = 1, lim\1, n++; sm += k[1]; if(issquare(sm), print1(n, ", "))); \\ Amiram Eldar, Jan 23 2026
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gonzalo MartÃnez, Jan 23 2026
EXTENSIONS
a(12)-a(13) from Amiram Eldar, Jan 23 2026
STATUS
approved
