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

A120075
Row sums of triangle A120073 (denominator triangle for H atom spectrum).
6
4, 45, 176, 750, 1101, 4459, 6080, 13284, 16350, 46585, 33954, 109850, 92463, 142705, 198400, 432344, 255096, 761349, 500355, 824866, 925529, 2007555, 1044616, 2612500, 2158130, 3301641, 2848741
OFFSET
2,1
LINKS
FORMULA
a(n) = Sum_{k=1..n-1} A120073(n,k), for n >= 2.
MATHEMATICA
A120075[n_]:= Sum[Denominator[1/k^2 -1/n^2], {k, n-1}];
Table[A120075[n], {n, 2, 50}] (* G. C. Greubel, Apr 24 2023 *)
PROG
(Magma)
A120073:= func< n, k | Denominator(1/k^2 - 1/n^2) >;
[(&+[A120073(n, k): k in [1..n-1]]): n in [2..50]]; // G. C. Greubel, Apr 24 2023
(SageMath)
def A120073(n, k): return denominator(1/k^2 - 1/n^2)
[sum(A120073(n, k) for k in range(1, n)) for n in range(2, 51)] # G. C. Greubel, Apr 24 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jul 20 2006
STATUS
approved