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.

A332575 Least start of a run of exactly n consecutive numbers that are norm-abundant in Gaussian integers (A332570).

Original entry on oeis.org

2, 9, 4, 12, 24, 185, 114, 1649, 692, 4977, 1412, 416345, 22624, 72233, 199892, 25262152, 1351880, 130824185, 16305324, 1688906313, 9412730, 10393378914, 721753400
Offset: 1

Views

Author

Amiram Eldar, Feb 16 2020

Keywords

Examples

			a(2) = 9 since 9 and 10 are the least pair of 2 consecutive numbers that are norm-abundant in Gaussian integers, and 8 and 11 are not norm-abundant.
		

Crossrefs

Programs

  • Mathematica
    normAbQ[z_] := Abs[DivisorSigma[1, z, GaussianIntegers -> True]]^2 > 2*Abs[z]^2; n = 1; count = 0; max = 15; seq = Table[0, {max}]; While[count < max, n1 = n; If[normAbQ[n], While[normAbQ[++n1]]; d = n1 - n; If[d <= max && seq[[d]] == 0, count++; seq[[d]] = n]]; n = n1 + 1]; seq