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!)
A349279 Fixed points of A349278. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 24, 45, 8643024 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is similar to A349190 but with digits taken in reversed order.
LINKS
EXAMPLE
24 is a term because A349278(24) = 4*(4+2) = 4*6 = 24.
MATHEMATICA
f[n_] := Times @@ Accumulate @ Reverse @ IntegerDigits[n]; Select[Range[100], f[#] == # &] (* Amiram Eldar, Nov 13 2021 *)
PROG
(Python)
from math import prod
from itertools import accumulate
def ok(n):
return n == (0 if n%10==0 else prod(accumulate(map(int, str(n)[::-1]))))
print([k for k in range(1, 10**7) if ok(k)]) # Michael S. Branicky, Nov 13 2021
CROSSREFS
Sequence in context: A134703 A061862 A007532 * A347189 A068189 A069716
KEYWORD
nonn,base,more
AUTHOR
Michel Marcus, Nov 13 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 April 18 03:33 EDT 2024. Contains 371767 sequences. (Running on oeis4.)