[go: up one dir, main page]

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

A174575
a(n) = floor( (alpha^n-beta^n)/(alpha-beta) ), where alpha=(1 + 3^(1/4))/2 and beta = (1 - 3^(1/4))/2.
1
0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 5, 5, 6, 7, 9, 10, 12, 14, 16, 19, 22, 25, 29, 34, 39, 46, 53, 62, 71, 83, 96, 111, 129, 149, 173, 200, 232, 268, 311, 360, 417, 483, 560, 648, 751, 869, 1007, 1166
OFFSET
0,8
COMMENTS
The sequence is designed to have alpha as the limiting ratio of a(n+1)/a(n): 1.1580370064762462304...
MATHEMATICA
a = (1 + 3^(1/4))/2; b = (1 - 3^(1/4))/2;
f[n_] := Floor[FullSimplify[(a^n - b^n)/(a - b)]]
Table[f[n], {n, 0, 50}]
CROSSREFS
Cf. A174427.
Sequence in context: A164066 A053251 A090184 * A029057 A087897 A029056
KEYWORD
nonn,less
AUTHOR
Roger L. Bagula, Nov 29 2010
STATUS
approved