login
This site is supported by donations 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. 1
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; internal format)
OFFSET

1,3

COMMENTS

T(n,k) = A000005(A050873(n,k)). [From Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Jun 28 2010]

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.

FORMULA

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

Rows: {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

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

Adjacent sequences:  A051191 A051192 A051193 * A051195 A051196 A051197

KEYWORD

nonn,tabl

AUTHOR

Clark Kimberling (ck6(AT)evansville.edu)

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 22:48 EST 2012. Contains 206085 sequences.