OFFSET
1,5
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
a(5) = 5 since the 4 smallest positive multiples of 5, i.e., 5, 10, 15, and 20, are not of the form x^2 + 2*y^2, and 25 (which equals 5*5) is, since 25 = 5^2 + 2*0^2.
MATHEMATICA
f[p_, e_] := If[Mod[p, 8] > 4, p^Mod[e, 2], 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, if(f[i, 1]%8 > 4, f[i, 1]^(f[i, 2] % 2), 1)); }
CROSSREFS
KEYWORD
nonn,mult,easy
AUTHOR
Amiram Eldar, Dec 02 2025
STATUS
approved
