cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A332573 Numbers k such that k and k + 1 are both norm-deficient in Gaussian integers (A332572).

Original entry on oeis.org

7, 16, 127, 128, 151, 248, 256, 343, 472, 536, 568, 631, 632, 751, 752, 823, 856, 943, 1048, 1111, 1136, 1207, 1303, 1327, 1328, 1336, 1432, 1527, 1528, 1591, 1687, 1688, 1711, 1712, 1783, 1816, 1912, 2031, 2032, 2047, 2048, 2103, 2167, 2263, 2416, 2487, 2488
Offset: 1

Views

Author

Amiram Eldar, Feb 16 2020

Keywords

Examples

			7 is a term since both 7 and 7 + 1 = 8 are norm-deficient in Gaussian integers (A332572).
		

Crossrefs

Programs

  • Mathematica
    normDefQ[z_] := Abs[DivisorSigma[1, z, GaussianIntegers -> True]]^2 < 2*Abs[z]^2; Select[Range[2500], normDefQ[#] && normDefQ[# + 1] &]