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.

A063734 Square abundant numbers.

Original entry on oeis.org

36, 100, 144, 196, 324, 400, 576, 784, 900, 1296, 1600, 1764, 1936, 2304, 2500, 2704, 2916, 3136, 3600, 4356, 4624, 4900, 5184, 5776, 6084, 6400, 7056, 7744, 8100, 8464, 9216, 9604, 10000, 10404, 10816, 11025, 11664, 12100, 12544, 12996, 13456, 14400
Offset: 1

Views

Author

Jason Earls, Aug 13 2001

Keywords

Crossrefs

Intersection of A000290 and A005101.
Subsequence of A363169.
Cf. A381738.

Programs

  • Mathematica
    Select[Range[150]^2,DivisorSigma[1,#]>2#&] (* Harvey P. Dale, Aug 14 2014 *)
  • PARI
    j=[]; for(n=1,25000, if(sigma(n)>(2*n),a=n; if(issquare(a),j=concat(j,a)))); j
    
  • PARI
    { n=0; for (m=1, 10^9, if (issquare(m) && sigma(m)>(2*m), write("b063734.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 29 2009
    
  • PARI
    { n=0; for (m=1, 10^9, s=m^2; if (sigma(s)>(2*s), write("b063734.txt", n++, " ", s); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 29 2009

Formula

a(n) = A381738(n)^2. - Amiram Eldar, Mar 07 2025