A103192 Trajectory of 1 under repeated application of the function n -> A102370(n).
1, 3, 5, 15, 17, 19, 21, 31, 33, 35, 37, 47, 49, 51, 53, 63, 65, 67, 69, 79, 81, 83, 85, 95, 97, 99, 101, 111, 113, 115, 117, 127, 129, 131, 133, 143, 145, 147, 149, 159, 161, 163, 165, 175, 177, 179, 181, 191, 193, 195, 197, 207, 209, 211, 213, 223, 225, 227, 229, 239, 241
Offset: 1
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
- David Applegate, Benoit Cloitre, Philippe Deléham and N. J. A. Sloane, Sloping binary numbers: a new sequence related to the binary numbers [pdf, ps].
- David Applegate, Benoit Cloitre, Philippe Deléham and N. J. A. Sloane, Sloping binary numbers: a new sequence related to the binary numbers, J. Integer Seq. 8 (2005), no. 3, Article 05.3.6, 15 pp.
- Index entries for sequences which agree for a long time but are different
Programs
-
Haskell
a103192 n = a103192_list !! (n-1) a103192_list = iterate (fromInteger . a102370) 1 -- Reinhard Zumkeller, Jul 21 2012
Comments