login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; table; graph; refs; listen; history; text; internal format)
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
CROSSREFS
Sequence in context: A095709 A076152 A107638 * A104765 A308690 A329512
KEYWORD
nonn,tabl,look
AUTHOR
Omar E. Pol, Jul 15 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 6 16:18 EDT 2024. Contains 372296 sequences. (Running on oeis4.)