OFFSET
1,1
COMMENTS
Although it initially appears that a(n)-8n is the 16-periodic sequence {-2,-6,-10,-14,-18,-22,-26,-30,-34,-38,-42,-46,-50,-54,6,2}, this pattern eventually breaks down. However, the first divergence occurs beyond the first 400 million terms.
(a(n)) agrees with the 16-periodic sequence up to a(2^67-1) = 2^70 - 70, but then diverges with a(2^67) = 2^71 - 2. - Charlie Neder, Feb 07 2019
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], preprint, 2005.
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.
PROG
(Haskell)
a103747 n = a103747_list !! (n-1)
a103747_list = iterate (fromInteger . a102370) 2
-- Reinhard Zumkeller, Jul 21 2012
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Benoit Cloitre and David Applegate, Mar 25 2005
EXTENSIONS
Edited by Peter Munn, Jan 13 2024
STATUS
approved