login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A231579
a(1) = 7; for n > 1, a(n) is the hypotenuse of the right triangle with legs a(n) - 1 and a(n-1).
0
7, 25, 313, 48985, 1199765113, 719718163185951385, 258997117209879873736794713791709113, 33539753361514126736178628392779244498735703225085922505721228803623385
OFFSET
1,1
COMMENTS
Least prime factors of a(n): 7, 5, 313, 5, 1199765113, 5, 233, 5, 101, 5, 2951438416261, 5, 457, 5, 373, 5, 89, 5, 101, 5.
FORMULA
a(n) = (a(n-1)^2 + 1) / 2.
EXAMPLE
25^2 = 24^2 + 7^2, 313^2 = 312^2 + 25^2.
MATHEMATICA
NestList[(#^2+1)/2&, 7, 8]
CROSSREFS
Cf. A053630 (case a(1) = 3).
Sequence in context: A290882 A197651 A198022 * A364644 A197721 A261421
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 11 2013
EXTENSIONS
b(11) = 2951438416261 (the least prime factor of a(11)) from Jon E. Schoenfield and Charles R Greathouse IV
STATUS
approved