login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A181670
Triangle read by rows: T(n,k) = 2^(n-1) mod prime(k), 1 <= k <= n.
3
1, 0, 2, 0, 1, 4, 0, 2, 3, 1, 0, 1, 1, 2, 5, 0, 2, 2, 4, 10, 6, 0, 1, 4, 1, 9, 12, 13, 0, 2, 3, 2, 7, 11, 9, 14, 0, 1, 1, 4, 3, 9, 1, 9, 3, 0, 2, 2, 1, 6, 5, 2, 18, 6, 19, 0, 1, 4, 2, 1, 10, 4, 17, 12, 9, 1, 0, 2, 3, 4, 2, 7, 8, 15, 1, 18, 2, 13, 0, 1, 1, 1, 4, 1, 16, 11, 2, 7, 4, 26, 37, 0, 2, 2, 2, 8, 2, 15
OFFSET
1,3
EXAMPLE
Triangle begins:
1;
0, 2;
0, 1, 4;
0, 2, 3, 1;
0, 1, 1, 2, 5;
0, 2, 2, 4,10, 6;
0, 1, 4, 1, 9,12,13;
0, 2, 3, 2, 7,11, 9,14;
0, 1, 1, 4, 3, 9, 1, 9, 3;
MATHEMATICA
Flatten[Table[Mod[2^(n-1), Prime[k]], {n, 14}, {k, n}]]
CROSSREFS
Cf. A174620.
Sequence in context: A131487 A230747 A308628 * A261251 A341101 A342909
KEYWORD
nonn,tabl
AUTHOR
EXTENSIONS
Corrected by T. D. Noe, Dec 02 2010
STATUS
approved