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!)
A266816 Numbers whose arithmetic derivative is equal to the product of their digits. 1
4, 11, 25, 329, 3383, 4343, 5561, 6623, 12773, 17267, 21479, 57721, 129383, 136259, 142943, 172793, 256631, 292571, 364823, 413663, 413927, 619337, 653291, 1215659, 1218863, 1268951, 1276931, 1483751, 1655219, 1892327, 2952731, 4158719, 4973531, 5418671, 6377663 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
4 appears to be the only even number in the sequence.
LINKS
EXAMPLE
4’ = 4;
11’ = 1 = 1*1;
25’ = 10 = 2*5;
329’ = 54 = 3*2*9; etc.
MAPLE
with(numtheory): P:=proc(q) local a, b, k, n; for n from 1 to q do a:=n; b:=1;
for k from 1 to ilog10(n)+1 do b:=b*(a mod 10); a:=trunc(a/10); od;
if n*add(op(2, a)/op(1, a), a=ifactors(n)[2])=b then print(n); fi; od; end: P(10^9);
MATHEMATICA
Select[Range[3, 10^5], Times @@ IntegerDigits@ # == # Total[#2/#1 & @@@
FactorInteger@ Abs@ #] &] (* Michael De Vlieger, Feb 10 2016, after Michael Somos at A003415 *)
CROSSREFS
Sequence in context: A202088 A328937 A328936 * A289082 A079467 A140897
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Feb 10 2016
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 23 11:13 EDT 2024. Contains 371905 sequences. (Running on oeis4.)