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.

Showing 1-1 of 1 results.

A072228 Numbers k such that k equals the sum of the reverses of the proper divisors of k.

Original entry on oeis.org

6, 244, 285, 133857, 141635817, 273722772124
Offset: 1

Views

Author

Joseph L. Pe, Jul 05 2002

Keywords

Comments

I call these numbers "anti-perfect" (compare with the picture-perfect numbers A069942).
a(7) > 10^12. - Giovanni Resta, Apr 07 2017

Examples

			The proper divisors of 285 are 1, 3, 5, 15, 19, 57, 95, with sum of reverses = 1 + 3 + 5 + 51 + 91 + 75 + 59 = 285. Therefore 285 is anti-perfect.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := FromDigits[Reverse[IntegerDigits[n]]]; Do[ If[n == Apply[Plus, Map[f, Drop[Divisors[n], -1]]], Print[n]], {n, 2, 10^7}]
    Select[Range[15*10^7],Total[IntegerReverse[Most[Divisors[#]]]]==#&] (* Requires Mathematica version 10 or later *) (* The program takes a long time to run *) (* Harvey P. Dale, Aug 31 2016 *)

Extensions

One more term from Farideh Firoozbakht, Dec 23 2004
a(6) from Giovanni Resta, Apr 07 2017
Showing 1-1 of 1 results.