OFFSET
1,1
COMMENTS
Start with the Fibonacci polynomials of A011973 (see "examples") and put in appropriate exponents, e.g. {1,1} = x^2 + 1, the generator of A002522; {1,2} = x^3 + 2x, the generator of A054602; and to get the next polynomial, multiply by x and add the previous polynomial, such that the generator for A085151 = x^4 + 3x^2 + 1 = (x)(x^3+2x) + (x^2+1).
FORMULA
1. x^4 + 3x^2 + 1 2. a(n) = n*A054602(n) + A002522(n) 3. a(n) = denominator of [n, n, n, n]; with numerator = A054602(n).
a(n)=A057721(n). [From R. J. Mathar, Sep 12 2008]
EXAMPLE
MATHEMATICA
f[n_] := n^4 + 3n^2 + 1; Array[f, 33]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Jun 21 2003
EXTENSIONS
More terms from Robert G. Wilson v, Aug 06 2006
STATUS
approved