OFFSET
1,1
COMMENTS
REFERENCES
M. Hall, Jr., Combinatorial Theory, Wiley, New York, 1986, see Theorem 12.3.2.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
R. H. Bruck and H. J. Ryser, The nonexistence of certain projective planes, Canad. J. Math., 1 (1949), 88-93.
Eric Weisstein's World of Mathematics, Bruck-Ryser-Chowla Theorem.
Wikipedia, Bruck-Ryser-Chowla theorem.
MATHEMATICA
Select[Range[240], (Mod[#, 4] == 1 || Mod[#, 4] == 2) && PowersRepresentations[#, 2, 2] == {} & ] (* Jean-François Alcover, Aug 30 2011 *)
Select[Range[250], MemberQ[{1, 2}, Mod[#, 4]]&&SquaresR[2, #]==0&] (* Harvey P. Dale, Apr 01 2015 *)
PROG
(Haskell)
a046712 n = a046712_list !! (n-1)
a046712_list = filter ((`elem` [1, 2]) . (`mod` 4)) a022544_list
-- Reinhard Zumkeller, Aug 16 2011
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
EXTENSIONS
More terms from James A. Sellers
STATUS
approved