OFFSET
0,1
COMMENTS
Characteristic function of A004215, indicating numbers not the sum of 3 integer squares.
a(n) + 1 is the smallest positive number such that (a(n) + 1) * n is the sum of three squares. - Peter Schorn, Jul 18 2023
LINKS
J.-P. Allouche and J. Shallit, The ring of k-regular sequences, Theoretical Computer Sci., 98 (1992), 163-197; preprint. See Example 20.
Eric Weisstein's World of Mathematics, Square Numbers.
FORMULA
MATHEMATICA
A072400[n_] := Mod[If[Mod[n, 4] == 0, n/4^IntegerExponent[n, 4], n], 8];
a[n_] := 1 - Sign[7 - A072400[n]];
Table[a[n], {n, 0, 96}] (* Jean-François Alcover, Dec 13 2021 *)
PROG
(Python)
def A072401(n): return ((m:=(~n&n-1).bit_length())&1^1)&int((n>>m)&7==7) # Chai Wah Wu, Aug 01 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 16 2002
STATUS
approved