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”).

A024557
a(n) = [ a(n-1)/(sqrt(6) - 2) ], where a(0) = 1.
1
1, 2, 4, 8, 17, 37, 82, 182, 404, 898, 1997, 4442, 9882, 21984, 48908, 108807, 242067, 538537, 1198107, 2665482, 5930017, 13192774, 29350556, 65297498, 145270273, 323189294, 719013724, 1599622094, 3558751049, 7917313144, 17614001812, 39186660195
OFFSET
0,2
LINKS
MATHEMATICA
a[0] = 1;
a[n_] := Floor[a[n - 1]/FractionalPart[Sqrt[6]]]
Table[a[n], {n, 0, 60}]
(* Clark Kimberling, Aug 16 2012 *)
CROSSREFS
Sequence in context: A132275 A136671 A274114 * A199409 A025241 A292461
KEYWORD
nonn
STATUS
approved