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.

A128911 Square tribonacci numbers.

Original entry on oeis.org

0, 1, 4, 81, 3136, 10609
Offset: 1

Views

Author

David A. G. Gillies, Apr 23 2007

Keywords

Comments

These are the only square tribonacci numbers having indices < 47000.
Next term, if it exists, is too large to present here. - Robert G. Wilson v, Apr 24 2007
Indices of the square tribonacci numbers: 1,4,9,15,17.
The square Fibonacci numbers seem to be even rarer, namely just 1 & 144. - Robert G. Wilson v, Apr 24 2007
It is very likely that there are no further terms. - N. J. A. Sloane, Apr 25 2007
Using modular arithmetic and quadratic residues, it can be shown that there are no additional squares in the first 10^9 tribonacci numbers. - T. D. Noe, Jun 22 2007

Examples

			The terms 0, 1, 4, 81, 3136, 10609 are members of the sequence since their square roots are 0, 1, 2, 9, 56, 103 respectively.
		

Crossrefs

Intersection of A000073 and A000290.

Programs

  • Mathematica
    a = b = 0; c = 1; lst = {}; Do[{a, b, c} = {b, c, a + b + c}; If[ IntegerQ@ Sqrt@c, AppendTo[lst, c]], {n, 2, 47000}]; lst (* Robert G. Wilson v, Apr 24 2007 *)
    Drop[Select[LinearRecurrence[{1,1,1},{0,1,1},20],IntegerQ[Sqrt[#]]&],2] (* Harvey P. Dale, Mar 17 2017 *)

Extensions

Edited by Robert G. Wilson v, Apr 24 2007
More terms from T. D. Noe, Jun 22 2007
a(1) = 0 inserted by Felix Fröhlich, Dec 11 2019