OFFSET
0,2
COMMENTS
Quadratic equation associated with group [3,3,5] which instead of t=phi uses t=2 in Phi(t) = (1 + sqrt(1+4*t^4))/(2*t).
REFERENCES
H. S. M. Coxeter, Regular Polytopes, 3rd ed., Dover, NY, 1973, page 221.
LINKS
FORMULA
G.f.: (1+3x)/(1-x-16*x^2). - Philippe Deléham, Mar 26 2009
MATHEMATICA
Clear[M, v, t, n];
M = {{0, t}, {t, 1/t}};
v[0] = {1, 1};
v[n_] := v[n] = M.v[n - 1];
t = 2;
a = Table[t^n*v[n][[1]], {n, 0, 30}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Mar 22 2009
EXTENSIONS
Definition simplified following the Deleham proposition of Mar 2009 - The Assoc. Eds. of the OEIS, Aug 29 2010
STATUS
approved