login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A166492
Table of numerators of A120070(n,m)/A002260(n,m), 1 <= m < n.
2
3, 8, 5, 15, 6, 7, 24, 21, 16, 9, 35, 16, 9, 5, 11, 48, 45, 40, 33, 24, 13, 63, 30, 55, 12, 39, 14, 15, 80, 77, 24, 65, 56, 15, 32, 17, 99, 48, 91, 21, 15, 32, 51, 9, 19, 120, 117, 112, 105, 96, 85, 72, 57, 40, 21, 143, 70, 45, 32, 119, 18, 95, 10, 7, 22, 23, 168, 165, 160, 153, 144
OFFSET
2,1
COMMENTS
Numerators of the fractions (n+m)*(n-m)/m.
The numerical values are between A120070(n,m) and A120072(n,m), see A164561.
If we "flatten" the table (enumerate the sequence starting at 1 instead of using the double index), the positions where a common factor is removed from the numerator A120070 and denominator A002260 are at 5, 12, 13, etc., as given by A076537.
MAPLE
A120070 := proc(n, m) (n+m)*(n-m) ; end:
A002260 := proc(n, m) m ; end:
A166492 := proc(n, m) A120070(n, m)/A002260(n+1, m) ; numer(%) ; end: seq(seq(A166492(n, m), m=1..n-1), n=2..17) ; # R. J. Mathar, Oct 21 2009
CROSSREFS
Cf. A129326.
Sequence in context: A078356 A050093 A120072 * A120070 A143753 A121164
KEYWORD
nonn,frac,tabl
AUTHOR
Paul Curtz, Oct 15 2009
EXTENSIONS
Edited and extended by R. J. Mathar, Oct 21 2009
STATUS
approved