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.

A100416 Numbers n such that sum of the proper divisors of n is equal to d_1!+d_2!+...+d_k!, where d_1 d_2 ... d_k is the decimal expansion of n.

Original entry on oeis.org

561653, 606061, 1649345, 2631227, 5657101, 25376713, 33805243, 38747603, 68760599, 77773043, 80404183, 101695597, 124781123, 125348239, 142692929, 152212087, 177464929, 184416409, 192144907, 200781041, 238715647, 241253839
Offset: 1

Views

Author

Farideh Firoozbakht, Dec 12 2004

Keywords

Examples

			38747603 is in the sequence because {1,769,50387} is the set of proper
divisors of 38747603 and 3!+8!+7!+4!+7!+6!+0!+3!=1+769+50387.
		

Crossrefs

Cf. A101697.

Programs

  • Mathematica
    Do[h = IntegerDigits[n]; l = Length[h]; If[DivisorSigma[1, n] - n == Sum[h[[k]]!, {k, l}], Print[n]], {n, 60000000}]
    Select[Range[2413*10^5],Total[Most[Divisors[#]]]==Total[ IntegerDigits[ #]!]&] (* Harvey P. Dale, Oct 11 2018 *)

Extensions

a(9)-a(22) from Donovan Johnson, Dec 07 2008
Comment deleted by Harvey P. Dale, Oct 11 2018