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”).

A245093
Triangle read by rows in which row n lists the first n terms of A000203.
8
1, 1, 3, 1, 3, 4, 1, 3, 4, 7, 1, 3, 4, 7, 6, 1, 3, 4, 7, 6, 12, 1, 3, 4, 7, 6, 12, 8, 1, 3, 4, 7, 6, 12, 8, 15, 1, 3, 4, 7, 6, 12, 8, 15, 13, 1, 3, 4, 7, 6, 12, 8, 15, 13, 18, 1, 3, 4, 7, 6, 12, 8, 15, 13, 18, 12, 1, 3, 4, 7, 6, 12, 8, 15, 13, 18, 12, 28
OFFSET
1,3
COMMENTS
Reluctant sequence of A000203.
Row sums give A024916.
Has a symmetric representation - for more information see A237270.
LINKS
FORMULA
T(n,k) = A000203(k), 1<=k<=n.
EXAMPLE
Triangle begins:
1;
1, 3;
1, 3, 4;
1, 3, 4, 7;
1, 3, 4, 7, 6;
1, 3, 4, 7, 6, 12;
1, 3, 4, 7, 6, 12, 8;
1, 3, 4, 7, 6, 12, 8, 15;
1, 3, 4, 7, 6, 12, 8, 15, 13;
1, 3, 4, 7, 6, 12, 8, 15, 13, 18;
1, 3, 4, 7, 6, 12, 8, 15, 13, 18, 12;
1, 3, 4, 7, 6, 12, 8, 15, 13, 18, 12, 28;
PROG
(Haskell)
import Data.List (inits)
a245093 n k = a245093_tabl !! (n-1) !! (k-1)
a245093_row n = a245093_tabl !! (n-1)
a245093_tabl = tail $ inits $ a000203_list
-- Reinhard Zumkeller, Dec 12 2015
KEYWORD
nonn,tabl,look
AUTHOR
Omar E. Pol, Jul 15 2014
STATUS
approved