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

A116953
a(n) = Floor[1/2((1-2/Sqrt[3])^n+(1-2/Sqrt[3])^n)]
0
1, 1, 2, 5, 10, 23, 50, 107, 232, 500, 1078, 2323, 5007, 10789, 23248, 50092, 107934, 232566, 501111, 1079745, 2326528, 5012972, 10801454, 23273900, 50148285, 108054537
OFFSET
0,3
COMMENTS
A Binet sequence solution with ratio =(2+Sqrt[3])/Sqrt[3] ( called a trident sequence after the graphic it comes from).
MATHEMATICA
Needs["DiscreteMath`RSolve`"]; Clear[f]; f[n_Integer] = Module[{a}, a[n] /. RSolve[{a[n] == 2*a[n - 1] + a[n - 2]/3, a[0] == 1, a[1] == 1}, a[n], n][[1]] // Simplify] // ToRadicals Table[Floor[N[f[n]]], {n, 0, 25}]
CROSSREFS
Sequence in context: A260744 A317535 A087640 * A099516 A293741 A291559
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Apr 03 2006
EXTENSIONS
Edited by N. J. A. Sloane, May 04 2006
STATUS
approved