A285788 Irregular triangle T(n,m): nonprime 1 <= k <= n such that n and k are coprime.
1, 1, 1, 1, 1, 4, 1, 1, 4, 6, 1, 1, 4, 8, 1, 9, 1, 4, 6, 8, 9, 10, 1, 1, 4, 6, 8, 9, 10, 12, 1, 9, 1, 4, 8, 14, 1, 9, 15, 1, 4, 6, 8, 9, 10, 12, 14, 15, 16, 1, 1, 4, 6, 8, 9, 10, 12, 14, 15, 16, 18, 1, 9, 1, 4, 8, 10, 16, 20, 1, 9, 15, 21, 1, 4, 6, 8, 9, 10
Offset: 1
Examples
Triangle begins: n\m 1 2 3 4 5 6 7 1: 1 2: 1 3: 1 4: 1 5: 1 4 6: 1 7: 1 4 6 8: 1 9: 1 4 8 10: 1 9 11: 1 4 6 8 9 10 12: 1 13: 1 4 6 8 9 10 12 14: 1 9 15: 1 4 8 14 16: 1 9 15 ...
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..11055 (rows 1 <= n <= 240)
Programs
-
Mathematica
Table[Select[Range@ n, And[! PrimeQ@ #, CoprimeQ[#, n]] &], {n, 23}] // Flatten
-
Python
from sympy import gcd, isprime def a(n): return list(filter(lambda k: isprime(k)==0 and gcd(k, n)==1, range(1, n + 1))) for n in range(1, 21): print(a(n)) # Indranil Ghosh, Apr 26 2017
Comments