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!)
A302801 a(n) is the number whose digits result from the concatenation of the digits of n and the digits of the product of the digits of n. 1
0, 11, 22, 33, 44, 55, 66, 77, 88, 99, 100, 111, 122, 133, 144, 155, 166, 177, 188, 199, 200, 212, 224, 236, 248, 2510, 2612, 2714, 2816, 2918, 300, 313, 326, 339, 3412, 3515, 3618, 3721, 3824, 3927, 400, 414, 428, 4312, 4416, 4520, 4624, 4728, 4832, 4936, 500, 515 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
For n=10, the digits of n are 1 and 0, their product is 0, and the concatenation gives 1 0 0.
MATHEMATICA
Table[FromDigits[Join[IntegerDigits[n], IntegerDigits[Product[Part[IntegerDigits[n], k], {k, Length[IntegerDigits[n]]}]]]], {n, 0, 51}] (* Stefano Spezia, Aug 13 2023 *)
PROG
(PARI) mydigits(n) = if (n, digits(n), [0]);
a(n) = my(d = mydigits(n)); fromdigits(concat(d, mydigits(prod(k=1, #d, d[k]))));
CROSSREFS
Sequence in context: A276769 A160861 A302575 * A067042 A078273 A345391
KEYWORD
nonn,base,easy
AUTHOR
Michel Marcus, Apr 13 2018
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 19 16:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)