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.

Showing 1-5 of 5 results.

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

A292851 Fibonacci numbers that are also generalized octagonal numbers.

Original entry on oeis.org

0, 1, 5, 8, 21, 4181
Offset: 0

Views

Author

Tomohiro Yamada, Sep 25 2017

Keywords

Comments

Intersection of A000045 and A001082.
These are all the terms, as confirmed by Tengely (2009).
All (generalized) g-gonal numbers in Lucas sequences up to g=20 have been determined, see Tengely (2009).

Crossrefs

Cf. A039595 (triangular Fibonacci numbers).

A293023 Generalized pentagonal numbers that are also Pell numbers.

Original entry on oeis.org

0, 1, 2, 5, 12, 70
Offset: 0

Views

Author

Tomohiro Yamada, Sep 29 2017

Keywords

Comments

Intersection of A000129 and A001318.
Except for 0 and 2, these are also ordinary pentagonal numbers.
All terms are shown, as confirmed by Siva Rama Prasad and Srinivasa Rao (2002).
All (generalized) g-gonal numbers in the Pell sequence up to g=20 have been determined, see Tengely (2009).

Crossrefs

A294369 Indices of Fibonacci numbers (A000045) that are triangular numbers (A000217).

Original entry on oeis.org

0, 1, 2, 4, 8, 10
Offset: 1

Views

Author

Alex Ratushnyak, Jan 24 2018

Keywords

Comments

The sequence of Fibonacci numbers that are also triangular numbers begins: 0, 1, 1, 3, 21, 55. That is, 0 and 1 followed by A039595.

Examples

			Fibonacci(10)=55 is a triangular number, therefore 10 is in the sequence.
		

Crossrefs

A307991 Fibonacci numbers of the form k^2 - k - 1 with integer k.

Original entry on oeis.org

1, 5, 55, 89
Offset: 1

Views

Author

Amiram Eldar, May 09 2019

Keywords

Comments

The corresponding values of k are 2, 3, 8, 10.
Intersection of A000045 and A028387.
Also Fibonacci numbers whose reciprocals equal to Sum_{i>=1} F(i)/k^(i+1), where F(i) is the i-th Fibonacci number.
de Weger proved that there are no other terms.

Examples

			89 is in the sequence since 89 = 10^2 - 10 - 1 or equivalently 1/89 = 1/10^2 + 1/10^3 + 2/10^4 + 3/10^5 + 5/10^6 + ... This is why the first digits of the decimal expansion of 1/89 = 0.011235... are the first terms of the Fibonacci sequence.
		

References

  • Fenton Stancliff, A curious property of a_11, Scripta Math., Vol. 19 (1953), p. 126.

Crossrefs

Programs

  • Mathematica
    Select[Fibonacci[Range[2, 20]], IntegerQ[Sqrt[4# + 5]] &]
Showing 1-5 of 5 results.