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.

A229493 Irregular triangle in which row n has numbers k such that prime(n) divides A001008(k), the numerator of the k-th harmonic number.

Original entry on oeis.org

2, 7, 22, 4, 20, 24, 6, 42, 48, 295, 299, 337, 341, 2096, 2390, 14675, 16731, 16735, 102728, 3, 7, 10, 77, 80, 84, 87, 110, 113, 117, 120, 848, 852, 856, 882, 888, 958, 962, 966, 1291, 1293, 9328, 9331, 9335, 9338, 9376, 9378, 10583, 10587, 10591, 14205, 14207
Offset: 2

Views

Author

T. D. Noe and Arkadiusz Wesolowski, Nov 11 2013

Keywords

Comments

The length of each row is given in A092103.

Examples

			The irregular triangle begins:
2, 7, 22
4, 20, 24
6, 42, 48, 295, 299, 337, 341, 2096, 2390, 14675, 16731, 16735, 102728
3, 7, 10, 77, 80, 84, 87, 110, 113, 117, 120, 848, 852, 856, 882, 888,...
		

Crossrefs

Cf. A092103 (number of k for which prime(n) divides A001008(k)).

Programs

  • Mathematica
    (* rows 2, 3, and part of 4 *) h = ParallelTable[Numerator[HarmonicNumber[i]], {i, 10000}]; Flatten[Table[Position[h, _?(Mod[#, p] == 0 &)], {p, {3, 5, 7}}]]