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.

A063900 Numbers k such that sum of proper divisors or aliquot parts of k^2 (excluding 1) is a square, or A048050(k^2) is a square.

Original entry on oeis.org

866, 9271, 18167, 30887, 39959, 114607, 119279, 129911, 153631, 239111, 343207, 517591, 582583, 602159, 607340, 1202282, 1397863, 1729999, 1920647, 2533183, 2547119, 2558183, 5740127, 7122959, 9379871, 10218407, 10891103, 13549399
Offset: 1

Views

Author

Jason Earls, Aug 29 2001

Keywords

Crossrefs

Programs

  • Mathematica
    chowla[n_] := DivisorSigma[1, n] - n - 1; aQ[n_] := IntegerQ@Sqrt@chowla[n^2]; Select[Range[10^6], aQ] (* Amiram Eldar, Aug 30 2019 *)
  • PARI
    s(n)=sigma(n)-n-1;
    for(n=1,10^8, if(issquare(s(n^2)),print(n)))
    
  • PARI
    s(n)=sigma(n) - n - 1
    { n=0; for (m=1, 10^9, if(issquare(s(m^2)), write("b063900.txt", n++, " ", m); if (n==55, break)) ) } \\ Harry J. Smith, Sep 02 2009

Extensions

a(19)-a(28) from Harry J. Smith, Sep 02 2009