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.

A248843 Table read by rows in which row n lists divisors of (p^p-1)/(p-1) where p = prime(n).

Original entry on oeis.org

1, 3, 1, 13, 1, 11, 71, 781, 1, 29, 4733, 137257, 1, 15797, 1806113, 28531167061, 1, 53, 264031, 1803647, 13993643, 95593291, 476218721057, 25239592216021, 1, 10949, 1749233, 2699538733, 19152352117, 29557249587617, 4722122236541789
Offset: 1

Views

Author

Jean-François Alcover, Dec 03 2014

Keywords

Examples

			Table begins:
  [1, 3],
  [1, 13],
  [1, 11, 71, 781],
  [1, 29, 4733, 137257],
  [1, 15797, 1806113, 28531167061],
  [1, 53, 264031, 1803647, 13993643, 95593291, 476218721057, 25239592216021],
  ...
		

Crossrefs

Programs

  • Mathematica
    Table[p = Prime[n]; Divisors[(p^p - 1)/(p - 1)], {n, 1, 10}] // Flatten