cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A144712 Ordered sequence of Fibonomial coefficients.

Original entry on oeis.org

1, 2, 3, 5, 6, 8, 13, 15, 21, 34, 40, 55, 60, 89, 104, 144, 233, 260, 273, 377, 610, 714, 987, 1092, 1597, 1820, 1870, 2584, 4181, 4641, 4895, 6765, 10946, 12376, 12816, 17711, 19635, 28657, 33552, 46368, 75025, 83215, 85085, 87841, 121393, 136136
Offset: 1

Views

Author

Florian Luca and Pante Stanica (pstanica(AT)nps.edu), Sep 19 2008

Keywords

Comments

All Fibonacci numbers are present except 0. Members which are not Fibonacci numbers: A171159. - Robert G. Wilson v, Dec 04 2009

Examples

			f_1=1, f_2=2, f_3=3, f_4=5, f_5=6.
		

Crossrefs

Cf. A010048. - Robert G. Wilson v, Dec 04 2009

Programs

  • Mathematica
    f[n_, k_] := Product[Fibonacci[n - j + 1]/Fibonacci[j], {j, k}]; Take[ Union@ Flatten@ Table[ f[n, i], {n, 0, 27}, {i, 0, n}], 47] (* Robert G. Wilson v, Dec 04 2009 *)

Formula

{[n,k]F = (F_n...F{n-k+1})/(F_1...F_k),n,k integers} = {f_1 < f_2 < f_3 < ...}

Extensions

a(16)-a(47) from Robert G. Wilson v, Dec 04 2009