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.

A372960 Concatenation of the exponents in the prime factorization of 2*n-1.

Original entry on oeis.org

0, 1, 1, 1, 2, 1, 1, 11, 1, 1, 11, 1, 2, 3, 1, 1, 11, 11, 1, 11, 1, 1, 21, 1, 2, 11, 1, 11, 11, 1, 1, 21, 11, 1, 11, 1, 1, 12, 11, 1, 4, 1, 11, 11, 1, 11, 11, 11, 1, 21, 1, 1, 111, 1, 1, 11, 1, 11, 21, 11, 2, 11, 3, 1, 11, 1, 11, 31, 1, 1, 11, 11, 11, 12, 1, 1, 21
Offset: 1

Views

Author

Jean-Marc Rebert, Aug 02 2024

Keywords

Examples

			a(8) = 11, because 2*8 - 1 = 15 = 3^1 * 5^1 and the concatenation of the exponents of the prime factorization is 11.
		

Crossrefs

Programs

  • Mathematica
    Join[{0},Table[FromDigits[Flatten[IntegerDigits/@FactorInteger[2n-1][[;;,2]]]],{n,2,80}]] (* Harvey P. Dale, Jun 04 2025 *)

Formula

a(n) = A037916(2*n-1).