A127368 Relative prime triangle, read by rows.
1, 1, 0, 1, 2, 0, 1, 0, 3, 0, 1, 2, 3, 4, 0, 1, 0, 0, 0, 5, 0, 1, 2, 3, 4, 5, 6, 0, 1, 0, 3, 0, 5, 0, 7, 0, 1, 2, 0, 4, 5, 0, 7, 8, 0, 1, 0, 3, 0, 0, 0, 7, 0, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 1, 0, 0, 0, 5, 0, 7, 0, 0, 0, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 0
Offset: 1
Examples
Row 4 = (1, 0, 3, 0) since 1 and 3 are relative primes of 4. First few rows of the triangle are: 1; 1, 0; 1, 2, 0; 1, 0, 3, 0; 1, 2, 3, 4, 0; 1, 0, 0, 0, 5, 0; 1, 2, 3, 4, 5, 6, 0; ...
Programs
-
PARI
T127368(n,k)={gcd(n,k)==1 & return(k)} A127368(n)=T127368( t=(sqrt(8*n)+1)\2, n-binomial(t, 2)) \\ M. F. Hasler, Mar 02 2012
Formula
T(n,k) = k if a relative prime of n; 0 otherwise. Replace the "1's" of A054521 with their corresponding column numbers; leaving the zeros.
Extensions
Corrected at the suggestion of Kevin Ryde by Alois P. Heinz, Mar 02 2012
Comments