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!)
A256015 Triangle read by rows: n-th row contains all distinct primes which are representable as the sum of some subset of the set of first n primes. 3
2, 2, 3, 5, 2, 3, 5, 7, 2, 3, 5, 7, 17, 2, 3, 5, 7, 11, 13, 17, 19, 23, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 41, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A066028(n) = T(n,A108018(n)).
LINKS
EXAMPLE
. 1: 2 |
. 2: 2 3 | 5
. 3: 2 3 5 | 7
. 4: 2 3 5 7 | 17
. 5: 2 3 5 7 11 | 13 17 19 23
. 6: 2 3 5 7 11 13 | 17 19 23 29 31 41
. 7: 2 3 5 7 11 13 17 | 19 23 29 31 37 41 43 47 53
. 8: 2 3 5 7 11 13 17 19 | 23 29 31 37 41 43 47 53 59 61 67 .
PROG
(Haskell)
import Data.List (subsequences, nub, sort)
a256015 n k = a256015_tabf !! (n-1) !! (k-1)
a256015_row n = a256015_tabf !! (n-1)
a256015_tabf = map (sort . filter ((== 1) . a010051') . nub .
map sum . tail . subsequences) (tail $ inits a000040_list)
CROSSREFS
Cf. A010051, A000040, A108018 (row lengths), A066028 (right edge).
Sequence in context: A140183 A280408 A130725 * A138117 A175908 A152430
KEYWORD
nonn,tabf
AUTHOR
Reinhard Zumkeller, Jun 01 2015
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 April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)