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”).

A164561
Triangle with elements A120070(m,n)/A120072(m,n) read by rows, m>=2, 1<=n<m.
2
1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 16, 27, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 16, 1, 4, 1, 1, 1, 9, 1, 1, 9, 1, 1, 1, 16, 1, 4, 25, 16, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 27, 128, 1, 108, 1, 16, 9, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 16, 1, 4, 1, 16, 49, 4, 1, 16, 1, 4, 1, 1, 1, 27, 1
OFFSET
2,5
EXAMPLE
The triangle starts in row m=2 as
1;
1, 1;
1, 4, 1;
1, 1, 1, 1;
1, 16, 27, 4, 1;
1, 1, 1, 1, 1, 1;
1, 4, 1, 16, 1, 4, 1;
MAPLE
A120070 := proc(m, n) m^2-n^2 ; end: A120072 := proc(m, n) numer(1/n^2-1/m^2) ; end:
A164561 := proc(m, n) A120070(m, n)/A120072(m, n) ; end: seq( seq(A164561(m, n), n=1..m-1), m=2..30) ; # R. J. Mathar, Aug 19 2009
CROSSREFS
Sequence in context: A336870 A184101 A347176 * A178764 A070010 A293768
KEYWORD
nonn,tabl,easy
AUTHOR
Paul Curtz, Aug 16 2009
EXTENSIONS
Edited and extended by R. J. Mathar, Aug 19 2009
STATUS
approved