OFFSET
0,2
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..16384 (rows n = 0..14, flattened)
Michael De Vlieger, Log log scatterplot of a(n), n = 0..2^14.
Michael De Vlieger, Fan style binary tree showing a(n) for n = 0..14, with a color function showing smaller numbers in reds and oranges, larger numbers in blues and magentas.
FORMULA
EXAMPLE
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;
...
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}]
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Michael De Vlieger, May 09 2025
STATUS
approved
