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.

A249671 Integers n such that A249670(n) = n.

Original entry on oeis.org

1, 364, 86800, 90768, 149856, 632400, 828816, 46462800, 61987600, 148468320, 153972000, 185684160, 187465824, 189300384, 191659104, 193808160, 196219296, 202460352, 204118464, 215399520, 220116960, 221931360, 222778080, 223382880, 228584160, 338116680
Offset: 1

Views

Author

Michel Marcus, Nov 03 2014

Keywords

Comments

That is, integers n such that A017665(n)*A017666(n) = n.

Examples

			sigma(364)/364 = 28/13 and 28*13 = 364, so 364 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    lista[n_Integer] := Select[Range[n], # == Numerator[DivisorSigma[-1, #]] * Denominator[DivisorSigma[-1, #]] &];
    lista[10^6] (* Michael De Vlieger, Nov 10 2014 *)
  • PARI
    isok(n) = my(ab = sigma(n)/n); numerator(ab)*denominator(ab) == n; \\ Michel Marcus, Nov 04 2014