login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A113761 Numbers k such that the number of divisors of k equals both the sum and the product of digits of k in base 10. 1
1, 2, 22, 2114, 11222, 21122, 22211, 112116, 121116, 1111143, 1413111, 3411111, 11111128, 11111821, 11112118, 11121231, 11811112, 13111212, 18111112, 21111118, 21111181, 21121113, 23111121, 111112119, 111119211, 192111111 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Intersection of A074312 and A057531.
LINKS
EXAMPLE
2114 is a term since 2+1+1+4 = 2*1*1*4 = 8 and 2114 has 8 divisors, {1, 2, 7, 14, 151, 302, 1057, 2114}.
MATHEMATICA
L={}; Do[d=IntegerDigits@n; p=Times@@d; If[p==Plus@@d && p==DivisorSigma[0, n], AppendTo[L, n]; Print[n]], {n, 1000000}]; L
lst = {}; fQ[n_] := (id = IntegerDigits@n; Plus @@ id == Times @@ id == DivisorSigma[0, n]); Do[ If[ fQ@n, AppendTo[lst, n]], {n, 2*10^8}]; lst
CROSSREFS
Sequence in context: A054948 A330124 A104149 * A319620 A054349 A182293
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Jan 18 2006
EXTENSIONS
a(13)-a(26) from Robert G. Wilson v, Jan 19 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)