OFFSET
0,3
COMMENTS
Why is this always a power of 2?
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
PROG
(C++) #include <iostream> #include <vector> #include <set> using namespace std ; int main(int argc, char *argv[]) { int kmax = 8 ; vector<int> a105025; a105025.push_back(0) ; a105025.push_back(1) ; for(int k=1 ; k < kmax ; k++) { int bstrt = 1 << k ; for(int j=0 ; j < bstrt ; j++) { int s = bstrt ; for(int i= k-1 ; i >=0 ; i--) s += (bstrt+j+k-i) & ( 1<<i) ; a105025.push_back(s) ; /* cout << s << endl ; */ } } for(int n=0; n < a105025.size() ; n++) { int nrep = n ; set<int> traj ; while ( traj.find(nrep) == traj.end() ) { traj.insert(nrep) ; if ( nrep < a105025.size() ) nrep = a105025[nrep] ; else break ; } cout << traj.size() << ", " ; } cout << endl ; return 0 ; } - R. J. Mathar, Aug 10 2007
(Haskell)
a105153 n = t [n] where
t xs@(x:_) | y `elem` xs = length xs
| otherwise = t (y : xs) where y = a105025 x
-- Reinhard Zumkeller, Jul 21 2012
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Philippe Deléham, Apr 30 2005
EXTENSIONS
More terms from R. J. Mathar, Aug 10 2007
STATUS
approved