|
Search: id:A117294
|
|
|
| A117294 |
|
Number of sequences of length n starting with 1,2 which satisfy a recurrence a(k+1) = floor(c*a(k)). |
|
+0 1
|
|
| 1, 1, 1, 2, 5, 14, 37, 102, 279, 756, 2070, 5609, 15198, 41530, 114049, 315447, 876513, 2446326, 6861432, 19315953, 54556553
(list; graph; listen)
|
|
|
OFFSET
|
0,4
|
|
|
COMMENT
|
It seems that a(n+1)/a(n) may be converging to something close to 2.7, but even that it converges is not obvious.
|
|
EXAMPLE
|
a(4) = 5; length 4 sequences are 1,2,4,8; 1,2,4,9; 1,2,5,12; 1,2,5,13; and 1,2,5,14.
|
|
PROGRAM
|
(define (A117294 n) (local ((define (get-ratios seq add?) (cond [(empty? (rest seq)) empty] [else (cons (/ (cond [add? (add1 (first seq))] [else (first seq)]) (second seq)) (get-ratios (rest seq) add?))])) (define (extend-one seq) (local ((define startnext (floor (* (apply max (get-ratios seq false)) (first seq)))) (define endnext (ceiling (* (apply min (get-ratios seq true )) (first seq)))) (define ltodo (build-list (- endnext startnext) (lambda (n) (cons (+ startnext n) seq))))) (cond [(>= (length seq) (sub1 n)) (length ltodo)] [else (apply + (map extend-one ltodo))])))) (extend-one (list 2 1)))) - Joshua Zucker (joshua.zucker(AT)stanfordalumni.org), Jun 05 2006
|
|
CROSSREFS
|
Some (infinite) examples of such sequences: A000079, A007051, A076883, A001519, A024537, A024576, A057960.
Sequence in context: A077938 A077987 A143141 this_sequence A148306 A148307 A148308
Adjacent sequences: A117291 A117292 A117293 this_sequence A117295 A117296 A117297
|
|
KEYWORD
|
more,nonn
|
|
AUTHOR
|
Frank Adams-Watters (FrankTAW(AT)Netscape.net), Apr 26 2006
|
|
EXTENSIONS
|
More terms from Joshua Zucker (joshua.zucker(AT)stanfordalumni.org), Jun 05 2006
|
|
|
Search completed in 0.002 seconds
|