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.

A036907 Square refactorable numbers.

Original entry on oeis.org

1, 9, 36, 225, 441, 625, 1089, 1521, 2025, 2601, 3249, 3600, 4761, 5625, 6561, 7569, 8100, 8649, 10000, 12321, 15129, 16641, 19881, 22500, 25281, 26244, 28224, 31329, 32400, 33489, 35721, 40401, 45369, 47961, 50625, 56169, 62001, 71289, 84681
Offset: 1

Views

Author

Simon Colton (simonco(AT)cs.york.ac.uk)

Keywords

Examples

			9 is refactorable because tau(9)=3 and 3 divides 9 and 9 is a square number.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[300]^2,Divisible[#,DivisorSigma[0,#]]&] (* Harvey P. Dale, Nov 21 2020 *)
  • PARI
    isok(n) = issquare(n) && ! (n % numdiv(n)); \\ Michel Marcus, Aug 31 2013