login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A022020
Define the sequence S(a(0),a(1)) by a(n+2) is the least integer such that a(n+2)/a(n+1) > a(n+1)/a(n) for n >= 0. This is S(3,9).
2
3, 9, 28, 88, 277, 872, 2746, 8648, 27236, 85778, 270153, 850832, 2679649, 8439409, 26579461, 83710572, 263641910, 830325909, 2615066456, 8236010096, 25938867499, 81693057596, 257287858063, 810314166891, 2552040558803, 8037513448351, 25313713063685, 79724167578475
OFFSET
0,1
LINKS
MAPLE
A022020 := proc(n)
option remember;
if n <= 1 then
op(n+1, [3, 9]) ;
else
a := procname(n-1)^2/procname(n-2) ;
if type(a, 'integer') then
a+1 ;
else
ceil(a) ;
fi;
end if;
end proc: # R. J. Mathar, Feb 10 2016
PROG
(PARI) a=[3, 9]; for(n=2, 30, a=concat(a, a[n]^2\a[n-1]+1)); a \\ M. F. Hasler, Feb 10 2016
CROSSREFS
Sequence in context: A118365 A095716 A124820 * A195675 A170953 A358092
KEYWORD
nonn
AUTHOR
EXTENSIONS
Double-checked and extended to 3 lines of data by M. F. Hasler, Feb 10 2016
STATUS
approved