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.

A248506 Lucas numbers that are also triangular numbers.

Original entry on oeis.org

1, 3, 5778
Offset: 1

Views

Author

Vincenzo Librandi, Dec 06 2014

Keywords

Comments

Intersection of A000032 and A000217.
All terms are shown, see Theorem 1.1 in the Tengely reference. - Joerg Arndt, Dec 06 2014

Examples

			Lucas(18) = 5778 = 107*108/2.
		

References

  • James J. Tattersall, Elementary Number Theory in Nine Chapters, Cambridge University Press, 1999, page 28.

Crossrefs

Programs

  • Mathematica
    Select[LucasL[Range[20]],OddQ[Sqrt[1+8#]]&] (* Harvey P. Dale, Oct 18 2015 *)
  • PARI
    L0=2; L1=1
    { for(k=1,10^9,
        if ( ispolygonal(L0,3), print1(L0,", ") );
        [L0, L1] = [L1, L1 + L0];
    ); }
    \\ Joerg Arndt, Dec 06 2014