login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A051194 Triangular array T read by rows: T(n,k) = number of positive integers that divide both n and k. 2
1, 1, 2, 1, 1, 2, 1, 2, 1, 3, 1, 1, 1, 1, 2, 1, 2, 2, 2, 1, 4, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 2, 1, 4, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 2, 1, 2, 2, 2, 1, 2, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 2, 3, 1, 4, 1, 3, 2, 2, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The function T(n,k) is defined for all integer n, k but only the values for 1<=k<=n as a triangular array are listed here.
LINKS
FORMULA
T(n,k) = A000005(A050873(n,k)). - Reinhard Zumkeller, Jun 28 2010
T(n,k) = T(k,n) = T(-n,k) = T(n,-k) = T(n,n+k) = T(n+k,k). - Michael Somos, Jul 18 2011
EXAMPLE
Triangle begins:
{1};
{1,2};
{1,1,2};
{1,2,1,3};
{1,1,1,1,2};
{1,2,2,2,1,4};
...
MATHEMATICA
T[ n_, k_] := Length[Intersection[Divisors @ If[n == 0, 1, n], Divisors @ If[k == 0, 1, k]]] (* Michael Somos, Jul 18 2011 *)
PROG
(PARI) {T(n, k) = sum( i=1, min( abs(n), abs(k)), (n%i == 0) && (k%i == 0))} /* Michael Somos, Jul 18 2011 */
CROSSREFS
Cf. A050873 (gcd), A000005 (number of divisors), A077478 (as square array).
Sum of numbers in row n matches A000203. Sum of numbers in first n rows matches A024916.
Sequence in context: A029396 A084746 A128259 * A134838 A049843 A131374
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)