login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

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
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
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 12 2016
STATUS
approved