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.

A166169 a(n) = Lucas(n^2) = A000204(n^2) for n >= 1.

Original entry on oeis.org

1, 7, 76, 2207, 167761, 33385282, 17393796001, 23725150497407, 84722519070079276, 792070839848372253127, 19386725908489881939795601, 1242282009792667284144565908482, 208406472252232726621841472637412401
Offset: 1

Views

Author

Paul D. Hanna, Oct 08 2009

Keywords

Crossrefs

Programs

  • Magma
    [ Lucas(n^2) : n in [1..50]]; // Vincenzo Librandi, Apr 14 2011
  • Mathematica
    Table[LucasL[n^2], {n, 1, 10}] (* G. C. Greubel, May 06 2016 *)
  • PARI
    a(n)=fibonacci(n^2-1)+fibonacci(n^2+1)
    

Formula

Logarithmic derivative of A166168.
a(n) = ((1 + sqrt(5))/2)^(n^2) + ((1 - sqrt(5))/2)^(n^2).
a(n) = Fibonacci(n^2 - 1) + Fibonacci(n^2 + 1).