OFFSET
1,2
COMMENTS
Numbers all of whose prime factors in Gaussian integers have multiplicity larger than 1.
The even powerful numbers divided by 4. - Amiram Eldar, May 28 2023
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Gaussian Integer.
Wikipedia, Gaussian integer.
FORMULA
EXAMPLE
2 is a term since 2 = -i * (1 + i)^2 in the ring of Gaussian integers. -i is a unit, and the multiplicity of its only Gaussian prime factor, 1 + i, is 2.
MATHEMATICA
gaussPowerQ[n_] := AllTrue[FactorInteger[n, GaussianIntegers -> True], Abs[First[#]] == 1 || Last[#] > 1 &]; Select[Range[1000], gaussPowerQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jun 26 2020
STATUS
approved