A137409 Numbers that cannot be the value of 'C' in a primitive Pythagorean triple (A < B; A^2 + B^2 = C^2).
1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83
Offset: 1
Keywords
Examples
3,4,5; number 5 is not in this sequence. 5,12,13; number 13 is not in this sequence. 8,15,17; number 17 is not in this sequence. 7,24,25; number 25 is not in this sequence.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Haskell
import Data.List (elemIndices) a137409 n = a137409_list !! (n-1) a137409_list = map (+ 1) $ elemIndices 0 a024362_list -- Reinhard Zumkeller, Dec 02 2012
-
Mathematica
okQ[1] = True; okQ[n_] := AnyTrue[FactorInteger[n][[All, 1]], Mod[#, 4] != 1&]; Select[Range[100], okQ] (* Jean-François Alcover, Mar 10 2019, after Federico Provvedi's comment *)
-
PARI
A065338(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = (f[i, 1]%4)); factorback(f); }; isA137409(n) = ((1==n)||(A065338(n)>1)); \\ Antti Karttunen, Dec 26 2020
Extensions
Extended by R. J. Mathar, Aug 15 2010
Comments