OFFSET
1
COMMENTS
a(n) = 1 if n has a divisor that is a sum of 2 distinct positive cubes (i.e., is one of the terms of A024670), otherwise 0.
LINKS
PROG
(PARI)
A373971(n) = if(0==n, n, for(i=ceil(sqrtn(n\2+1, 3)), sqrtn(n-(1/2), 3), if(ispower(n-(i^3), 3), return(1))); 0); \\ After M. F. Hasler's Apr 12 2008 program in A024670.
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 24 2024
STATUS
approved