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!)
A308004 a(n) = smallest nonnegative number that requires n applications of the Sisyphus function x -> A073053(x) to reach 123. 2
123, 101, 0, 20, 11, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n) = index of first n in A073054.
a(6) is currently unknown.
REFERENCES
M. E. Coppenbarger, Iterations of a modified Sisyphus function, Fib. Q., 56 (No. 2, 2018), 130-141.
LINKS
EXAMPLE
0 -> 101 -> 123 reaches 123 in two steps, so a(2) = 0.
1 -> 11 -> 22 -> 202 -> 303 -> 123 reaches 123 in 5 steps, so a(5) = 1.
MATHEMATICA
id[n_]:=IntegerDigits[n]; il[n_]:=If[n!=0, IntegerLength[n], 1]
den[n_]:=FromDigits[{Length[Select[id[n], EvenQ]], Length[Select[id[n], OddQ]], il[n]}]; numD[n_]:=Length[FixedPointList[den, n]]-2;
a308004[n_]:=Module[{k=0}, While[numD[k]!=n, k++]; k];
a308004/@Range[0, 5] (* Ivan N. Ianakiev, May 13 2019 *)
CROSSREFS
Sequence in context: A123171 A125097 A302211 * A192231 A341992 A077378
KEYWORD
nonn,base,more
AUTHOR
N. J. A. Sloane, May 12 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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)