|
| |
|
|
A206296
|
|
Numbers matched to the Fibonacci polynomials.
|
|
3
|
| |
|
|
|
OFFSET
|
1,1
|
|
|
COMMENTS
|
The matching is given at A206284. A guide to matched
pairs, (polynomial sequence, integer sequence):
...
polynomial sequence....integer sequence
x^n....................A000040
(x+1)^n................A007188
n*x^(n-1)..............A062457
(1-x^n)/(1-x)..........A002110
n+(n-1)x+...+x^n.......A006939
|
|
|
LINKS
|
Table of n, a(n) for n=1..10.
|
|
|
EXAMPLE
|
Referring to the matching and example at A206284:
1 -> 2
x -> 3
1 + x^2 -> 10
2x + x^3 -> 63
1 + 3x^2 + x^4 -> 2750
|
|
|
MATHEMATICA
|
c[n_] := CoefficientList[Fibonacci[n, x], x]
f[n_] := Product[Prime[k]^c[n][[k]],
{k, 1, Length[c[n]]}]
Table[f[n], {n, 1, 11}] (* A206296 *)
|
|
|
CROSSREFS
|
Cf. A206284.
Sequence in context: A093856 A173097 A088221 * A124923 A088222 A184249
Adjacent sequences: A206293 A206294 A206295 * A206297 A206298 A206299
|
|
|
KEYWORD
|
nonn
|
|
|
AUTHOR
|
Clark Kimberling, Feb 05 2012
|
|
|
STATUS
|
approved
|
| |
|
|