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.

A051294 a(n) = F(n^2)/F(n), where F(n) = A000045(n) is the n-th Fibonacci number.

Original entry on oeis.org

1, 3, 17, 329, 15005, 1866294, 598364773, 505248088463, 1114384187445409, 6440451785077489365, 97415813466381445596089, 3858093084890921488916776332, 400009475456580321242184872389193, 108580324845164033411588204172311746011, 77162132055850720265395402022419687035969985
Offset: 1

Views

Author

Keywords

Crossrefs

Main diagonal of array A028412.

Programs

  • Maple
    a:= n-> (f->f(n^2)/f(n))(k->(<<0|1>, <1|1>>^k)[1, 2]):
    seq(a(n), n=1..15);  # Alois P. Heinz, May 08 2025
  • Mathematica
    Table[Fibonacci[n^2]/Fibonacci[n],{n,15}]  (* Harvey P. Dale, Apr 12 2011 *)
  • PARI
    a(n)=fibonacci(n^2)/fibonacci(n)
    
  • PARI
    {Lucas(n)=fibonacci(n-1)+fibonacci(n+1)}
    {a(n)=polcoeff(1/(1-Lucas(n)*x+(-1)^n*x^2+x*O(x^n)),n-1)} /* Paul D. Hanna, Jan 28 2012 */

Formula

a(n) = [x^(n-1)] 1/(1 - Lucas(n)*x + (-1)^n*x^2), where Lucas(n) = A000204(n). - Paul D. Hanna, Jan 28 2012

Extensions

More terms from Benoit Cloitre, Jan 05 2003