OFFSET
1,2
COMMENTS
The possible values of a long leg of an integer right triangle are in A009012.
A227481(a(n)) = 1. - Reinhard Zumkeller, Oct 11 2013
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
EXAMPLE
5 is a term because a^2 + 5^2 = c^2 has no solution for a < 5 with integers a, c.
13 is a term because a^2 + 13^2 = c^2 has no solution for a < 13 with integers a, c.
PROG
(Haskell)
a074235 n = a074235_list !! (n-1)
a074235_list = filter ((== 1) . a227481) [1..]
-- Reinhard Zumkeller, Oct 11 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Sep 18 2002
STATUS
approved