login
A392801
Integers k such that the sum of the first k squarefree numbers is a square.
1
1, 14, 87, 204, 215, 2771, 3514, 4224, 4933, 63269, 219430, 335247600, 1861405559
OFFSET
1,2
COMMENTS
If A173143(k) is a square, then k is a term of the sequence.
FORMULA
A173143(a(n)) = A262783(n). - Amiram Eldar, Jan 23 2026
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