OFFSET
2,1
REFERENCES
J. Brillhart et al., Factorizations of b^n +- 1. Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 2nd edition, 1985; and later supplements.
LINKS
Max Alekseyev, Rows n = 2..1206, flattened (rows 2..500 from T. D. Noe)
Joerg Arndt, Rows n = 1..1200 of triangle (derived from Brillhart et al.; updated by Jon E. Schoenfield)
J. Brillhart et al., Factorizations of b^n +- 1, Contemporary Mathematics, Vol. 22, Amer. Math. Soc., Providence, RI, 3rd edition, 2002.
Jeroen Demeyer, Machine-readable Cunningham Tables
S. S. Wagstaff, Jr., The Cunningham Project
Eric Weisstein's World of Mathematics, Mersenne Number
EXAMPLE
Table begins:
n=2: 3;
n=3: 7;
n=4: 3, 5;
n=5: 31;
n=6: 3, 3, 7;
n=7: 127;
n=8: 3, 5, 17;
...
MATHEMATICA
Array[Flatten[ConstantArray[#1, #2] & @@ # & /@ FactorInteger[2^# - 1]] &, 24] // Flatten (* Michael De Vlieger, Dec 04 2017 *)
PROG
(PARI) row(n)= if (n==1, return ([0])); my(f = factor(2^n-1), v = []); for (i=1, #f~, for (j=1, f[i, 2], v = concat(v, f[i, j]))); v; \\ Michel Marcus, Dec 05 2017
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
EXTENSIONS
Ambiguous rows 0 and 1 removed by Max Alekseyev, Jul 25 2023
STATUS
approved