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.

A325625 Sorted prime signature of 2^n - 1.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1
Offset: 1

Views

Author

Gus Wiseman, May 13 2019

Keywords

Comments

The sorted prime signature of n is row n of A124010.

Examples

			We have 2^126 - 1 = 3^3 * 7^2 * 19 * 43 * 73 * 127 * 337 * 5419 * 92737 * 649657 * 77158673929, so row n = 126 is {1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3}.
Triangle begins:
  1
  1
  1
  1 1
  1
  1 2
  1
  1 1 1
  1 1
  1 1 1
  1 1
  1 1 1 2
  1
  1 1 1
  1 1 1
  1 1 1 1
  1
  1 1 1 3
  1
  1 1 1 1 2
		

Crossrefs

Programs

  • Mathematica
    Table[Sort[Last/@FactorInteger[2^n-1]],{n,30}]