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!)
A326742 Numbers which converge to 9 under repeated application of the powertrain map of A133500. 10
9, 25, 32, 52, 91, 109, 119, 129, 139, 149, 159, 169, 179, 189, 199, 209, 228, 234, 242, 251, 279, 295, 309, 313, 321, 337, 377, 409, 418, 422, 509, 515, 521, 539, 544, 609, 709, 809, 814, 835, 909, 911, 965, 1025, 1032, 1052, 1091, 1125, 1132, 1152, 1191 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
25 -> 2^5 = 32 -> 3^2 = 9.
PROG
(Python)
def powertrain(n):
p, s = 1, str(n)
if len(s)%2 == 1: s += '1'
for b, e in zip(s[0::2], s[1::2]): p *= int(b)**int(e)
return p
def aupto(limit, target=0):
alst = []
for n in range(1, limit+1):
m, ptm = n, powertrain(n)
while m != ptm: m, ptm = ptm, powertrain(ptm)
if m == target: alst.append(n)
return alst
print(aupto(1191, target=9)) # Michael S. Branicky, Sep 25 2021
CROSSREFS
Sequence in context: A339842 A068529 A096059 * A246328 A065772 A305755
KEYWORD
nonn,base,easy
AUTHOR
Martin Renner, Jul 22 2019
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 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)