The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A086354 Fixed point if (nonzero-digit product)-function at initial value 2^n is iterated. 2
2, 4, 8, 6, 6, 8, 6, 6, 1, 8, 8, 2, 6, 2, 2, 4, 8, 2, 1, 6, 2, 2, 6, 8, 2, 8, 2, 8, 2, 2, 8, 6, 6, 2, 2, 6, 2, 2, 6, 8, 8, 6, 3, 4, 2, 2, 6, 6, 2, 8, 6, 2, 2, 9, 8, 6, 6, 5, 8, 2, 8, 8, 2, 6, 2, 8, 8, 8, 5, 8, 8, 8, 2, 8, 6, 4, 8, 6, 2, 7, 1, 8, 8, 4, 2, 8, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A051802(2^n) = fixed point of A051801(2^n).
EXAMPLE
n=20, 2^20=1048576, iteration list={1048576,6720,84,32,6}, so a(20)=6.
MAPLE
A051801 := proc(n) local d, j: d:=convert(n, base, 10): return mul(`if`(d[j]=0, 1, d[j]), j=1..nops(d)): end: A086354 := proc(n) local m: m:=2^n: while(length(m)>1)do m:=A051801(m): od: return m: end: seq(A086354(n), n=1..100); # Nathaniel Johnston, May 04 2011
MATHEMATICA
prd[x_] := Apply[Times, DeleteCases[IntegerDigits[x], 0]] Table[FixedPoint[prd, 2^w], {w, 1, 128}]
CROSSREFS
Sequence in context: A329455 A292808 A300813 * A014257 A247576 A339133
KEYWORD
base,easy,nonn
AUTHOR
Labos Elemer, Jul 21 2003
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 June 9 05:56 EDT 2024. Contains 373227 sequences. (Running on oeis4.)