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!)
A364803 Smallest number that reaches a fixed point after n iterations of the map x -> A022290(x). 1
0, 4, 5, 6, 7, 10, 14, 23, 46, 117, 442, 3006, 47983, 2839934, 918486751, 3769839124330 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) is the smallest number k such that A364801(k) = n.
LINKS
MATHEMATICA
f[n_] := f[n] = Module[{d = IntegerDigits[n, 2], nd}, nd = Length[d]; Total[d * Fibonacci[Range[nd + 1, 2, -1]]]]; (* A022290 *)
iternum[n_] := -2 + Length@ FixedPointList[f, n]; (* A364801 *)
seq[kmax_] := Module[{s = {}, imax = -1, i}, Do[i = iternum[k]; If[i > imax, imax = i; AppendTo[s, k]], {k, 0, kmax}]; s]
seq[10^6]
PROG
(PARI) f(n) = {my(b = binary(n), nb = #b); sum(i = 1, nb, b[i] * fibonacci(nb - i + 2)); } \\ A022290
iternum(n) = if(n < 4, 0, iternum(f(n)) + 1); \\ A364801
lista(kmax) = {my(imax = -1, i1); for(k = 0, kmax, i = iternum(k); if(i > imax, imax = i; print1(k, ", "))); }
CROSSREFS
Similar sequences: A007755, A364802.
Sequence in context: A288737 A139448 A356398 * A022561 A213524 A047312
KEYWORD
nonn,base,more
AUTHOR
Amiram Eldar, Aug 08 2023
EXTENSIONS
a(15) from Martin Ehrenstein, Aug 25 2023
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 May 5 15:34 EDT 2024. Contains 372275 sequences. (Running on oeis4.)