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!)
A275862 floor(r*a(n-1)) + floor(r*a(n-2)), where r = 3/2, a(0) = 1, a(1) = 1. 5
1, 1, 2, 4, 9, 19, 41, 89, 194, 424, 927, 2026, 4429, 9682, 21166, 46272, 101157, 221143, 483449, 1056887, 2310503, 5051084, 11042380, 24140196, 52773864, 115371090, 252217431, 551382781, 1205400317, 2635174646, 5760862444, 12594055635, 27532377118 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = floor(3*a(n-1)/2) + floor(3*a(n-2)/2).
MATHEMATICA
r = 3/2; a[0] = 1; a[1] = 1; z = 50;
a[n_] := a[n] = Floor[r*a[n - 1]] + Floor[r*a[n - 2]];
t = Table[a[n], {n, 0, z}]
CROSSREFS
Sequence in context: A142474 A078039 A305380 * A036622 A001384 A089941
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 12 2016
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 August 15 11:07 EDT 2024. Contains 375173 sequences. (Running on oeis4.)