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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A369228 A070225 A132998 * A273832 A273848 A123650
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jul 20 2006
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 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)