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!)
A337718 Numbers that can be written as (m + product of digits of m) for some m. 6

%I #24 Jan 09 2023 09:09:01

%S 0,2,4,6,8,10,12,14,16,18,20,22,23,24,26,28,29,30,32,34,35,38,40,41,

%T 42,44,45,46,47,50,54,55,56,58,60,62,65,66,67,68,70,74,75,78,80,81,85,

%U 86,88,89,90,92,94,95,98,100,101,102,103,104,105,106,107,108,109

%N Numbers that can be written as (m + product of digits of m) for some m.

%C Every integer that contains a digit 0 is a term (A011540).

%C When R_m with m >= 1 is in A002275, then R_m + 1 is a term (A047855 \ {1}).

%C Near similar:

%C -> Not-Colombian (A176995) are numbers that can be written as (m + sum of digits of m) for some m.

%C -> Bogotá numbers (A336826) are numbers that can be written as (m * product of digits of m) for some m.

%H Michael S. Branicky, <a href="/A337718/b337718.txt">Table of n, a(n) for n = 1..10000</a>

%e 10 = 5 + 5 = 10 + (1*0) and 22 = 16 + (1*6) are terms.

%t m = 100; Select[Union[Table[n + Times @@ IntegerDigits[n], {n, 0, m}]], # <= m &] (* _Amiram Eldar_, Sep 16 2020 *)

%o (PARI) isok(m) = {if (m==0, return (1)); for (k=1, m, if (k+vecprod(digits(k)) == m, return (1)););} \\ _Michel Marcus_, Sep 17 2020

%o (Python)

%o from math import prod

%o def b(n): return n + prod(map(int, str(n)))

%o def aupto(n): return sorted(set(b(m) for m in range(n+1) if b(m) <= n))

%o print(aupto(109)) # _Michael S. Branicky_, Jan 09 2023

%Y Subsequences: A011540, A047855 \ {1}.

%Y Range of A230099.

%Y Cf. A176995 (not Colombian), A336826 (Bogotá numbers).

%K nonn,base

%O 1,2

%A _Bernard Schott_, Sep 16 2020

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 May 1 14:59 EDT 2024. Contains 372174 sequences. (Running on oeis4.)