login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A173510 a(n) = a(n-1) + a(n-2) - floor( a(n-1)/2 ). 2
2, 1, 3, 3, 5, 6, 8, 10, 13, 17, 22, 28, 36, 46, 59, 76, 97, 125, 160, 205, 263, 337, 432, 553, 709, 908, 1163, 1490, 1908, 2444, 3130, 4009, 5135, 6577, 8424, 10789, 13819, 17699, 22669, 29034, 37186, 47627, 61000, 78127, 100064, 128159, 164144, 210231, 269260, 344861, 441691 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The limiting ratio a(n+1)/a(n)is:1.2807764064
LINKS
MATHEMATICA
l[0] = 2; l[1] = 1;
l[n_] := l[n] = l[n - 1] + l[n - 2] - Floor[l[n - 1]/2]
Table[l[n], {n, 0, 30}]
RecurrenceTable[{a[0]==2, a[1]==1, a[n]==a[n-1]+a[n-2]-Floor[a[n-1]/2]}, a, {n, 50}] (* Harvey P. Dale, Sep 03 2013 *)
PROG
(Maxima) A173510[n] := block(
if equal(n, 0) then return(2) ,
if equal(n, 1) then return(1)
else
return(ev(A173510[n-1]+A173510[n-2]-floor(A173510[n-1]/2)))
)$ /* R. J. Mathar, Mar 11 2012 */
CROSSREFS
Cf. A000032.
Sequence in context: A357643 A034394 A058689 * A238785 A241389 A190568
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Nov 23 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 17:51 EDT 2024. Contains 371797 sequences. (Running on oeis4.)