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.

A181927 Row square-sums of Fibonomial triangle A010048.

Original entry on oeis.org

1, 2, 3, 10, 56, 502, 6930, 157172, 5847270, 350430420, 33789991248, 5280020814732, 1338210835193414, 548265785425359340, 363248986031094300018, 389399454403643525265020, 675824289510077938157099920
Offset: 0

Views

Author

Emanuele Munarini, Apr 02 2012

Keywords

Crossrefs

Programs

  • Mathematica
    FiboFactorial[n_] := Product[Fibonacci[k], {k, 1, n}]
    Fibonomial[n_, k_] :=
    If[k > n, 0, FiboFactorial[n]/(FiboFactorial[k] FiboFactorial[n - k])
      ]
    Table[Sum[Fibonomial[n, k]^2, {k, 0, n}], {n, 0, 100}]
    (* Emanuele Munarini, Feb 18 2016 *)
  • Maxima
    ffib(n):=prod(fib(k),k,1,n);
    fibonomial(n,k):=ffib(n)/(ffib(k)*ffib(n-k));
    makelist(sum(fibonomial(n,k)^2,k,0,n),n,0,30);

Formula

a(n) = sum(fibonomial(n,k)^2,k=0..n).