cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A126575 a(n) = numerator of the sum of reciprocals of the terms in n-th row of triangle A126571.

Original entry on oeis.org

1, 5, 47, 103, 461, 21211, 24183, 62081, 735503, 38230051, 4501873, 40137823, 1571907737, 776878687, 13914337609, 13784887072529, 93498082849, 1626565056793, 25260167753, 213051987097, 15224249929987129
Offset: 1

Views

Author

Leroy Quet, Dec 28 2006

Keywords

Examples

			Row 4 of triangle A126571 is (4,7,5,7).
So a(4) is the numerator of 1/4 +1/7 +1/5 + 1/7 = 103/84.
		

Crossrefs

Programs

  • Mathematica
    f[m_, n_] := Block[{k = 0, c = n},While[c > 0,k++;While[GCD[k, m] > 1, k++ ];c--;];k];Table[Numerator@Sum[1/f[m, n], {m, n}], {n, 22}] (* Ray Chandler, Dec 29 2006 *)

Extensions

Extended by Ray Chandler, Dec 29 2006