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.

A383180 Irregular table T(n,k) = A010846(A019565(2^n + k)).

Original entry on oeis.org

1, 2, 2, 5, 2, 6, 5, 18, 2, 6, 5, 19, 5, 20, 16, 68, 2, 7, 6, 22, 5, 21, 18, 77, 5, 22, 17, 79, 16, 74, 60, 283, 2, 7, 6, 23, 5, 23, 18, 80, 5, 22, 18, 82, 16, 78, 62, 295, 5, 24, 19, 87, 16, 82, 64, 315, 15, 80, 62, 316, 55, 290, 226, 1161
Offset: 0

Views

Author

Michael De Vlieger, May 09 2025

Keywords

Examples

			Triangle begins:
  0: 1;
  1: 2;
  2: 2, 5;
  3: 2, 6, 5, 18;
  4: 2, 6, 5, 19, 5, 20, 16, 68;
  5: 2, 7, 6, 22, 5, 21, 18, 77, 5, 22, 17, 79, 16, 74, 60, 283;
   ...
		

Crossrefs

Programs

  • Mathematica
    (* Load the "theta" program at the Mathematica link in A369609, then: *)
    f[x_] := Times @@ Prime@ Position[Reverse@ IntegerDigits[x, 2], 1][[All, 1]]; Table[theta[f[2^n + k] ], {n, 0, 7}, {k, 0, 2^n - 1}]

Formula

T(0,0) = 1.
T(n,0) = 2.
T(n,2^(n-1)-1) = A363061(n).