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!)
A346383 Numbers that leave their digital root as the remainder when the product of their digits is divided by the sum of their digits. 1
37, 38, 39, 73, 83, 93, 99, 146, 164, 247, 274, 299, 339, 348, 368, 384, 386, 393, 416, 427, 438, 449, 461, 472, 483, 494, 614, 638, 641, 679, 683, 697, 699, 724, 742, 769, 796, 834, 836, 843, 863, 929, 933, 944, 967, 969, 976, 992, 996, 1149, 1156, 1165, 1179 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3*7 == 1 (mod 3+7), digital root of 37 is 1, so 37 is a term.
MAPLE
filter:= proc(n) local L; L:= convert(n, base, 10); convert(L, `*`) mod convert(L, `+`) = [9, $1..8][(n mod 9)+1] end proc;
MATHEMATICA
l={}; Do[If[Mod[Times@@IntegerDigits@n, Total[IntegerDigits[n]]]==FixedPoint[Total[IntegerDigits[#, 10]] &, n], AppendTo[l, n]], {n, 0, 1000}]; l
PROG
(PARI) isok(m) = my(d=digits(m)); (vecprod(d) % vecsum(d)) == ((m-1)%9 + 1); \\ Michel Marcus, Jul 15 2021
CROSSREFS
Sequence in context: A185698 A043611 A296871 * A337453 A071887 A168143
KEYWORD
nonn,base
AUTHOR
Metin Sariyar, Jul 14 2021
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 July 2 15:15 EDT 2024. Contains 373957 sequences. (Running on oeis4.)