login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216269 Numbers n such that n^2 - 1 is a tetrahedral number (A000292). 2
1, 6, 11, 45, 51, 209, 660099 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Corresponding tetrahedral numbers are in A216268.
The curve 6*(x^2-1)-y*(y+1)*(y+2)=0 is elliptic, and has finitely many integral points by Siegel's theorem. - Robert Israel, Apr 22 2021
LINKS
MATHEMATICA
t = {}; Do[tet = n (n + 1) (n + 2)/6; If[IntegerQ[s = Sqrt[tet + 1]], AppendTo[t, s]], {n, 0, 100000}]; t (* T. D. Noe, Mar 18 2013 *)
PROG
(Python)
import math
for i in range(1L<<30):
t = i*(i+1)*(i+2)/6 + 1
sr = int(math.sqrt(t))
if sr*sr == t:
print sr,
CROSSREFS
Cf. A003556 (both square and tetrahedral).
Sequence in context: A270691 A270280 A270727 * A242488 A094555 A271056
KEYWORD
nonn,fini
AUTHOR
Alex Ratushnyak, Mar 15 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)