The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A065305 Triangular array giving means of two odd primes: T(n,k) = (n-th prime + k-th prime)/2, n >= k >= 2. 8
3, 4, 5, 5, 6, 7, 7, 8, 9, 11, 8, 9, 10, 12, 13, 10, 11, 12, 14, 15, 17, 11, 12, 13, 15, 16, 18, 19, 13, 14, 15, 17, 18, 20, 21, 23, 16, 17, 18, 20, 21, 23, 24, 26, 29, 17, 18, 19, 21, 22, 24, 25, 27, 30, 31, 20, 21, 22, 24, 25, 27, 28, 30, 33, 34, 37, 22, 23, 24, 26, 27, 29, 30 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
EXAMPLE
3; 4,5; 5,6,7; 7,8,9,11; ...
MAPLE
seq(seq((ithprime(i)+ithprime(j))/2, j=2..i), i=2..20)
PROG
(Haskell)
import Data.List (inits)
a065305 n k = a065305_tabl !! (n-2) !! (k - 1)
a065305_row n = a065305_tabl !! (n-2)
a065305_tabl = zipWith (map . (flip div 2 .) . (+))
a065091_list $ tail $ inits a065091_list
-- Reinhard Zumkeller, Aug 02 2015, Jan 30 2012
CROSSREFS
Cf. A065306.
a(n, k) = A065342(n, k)/2 [but note different offsets]
Cf. A098090 (left edge), A065091 (right edge), A000040.
Sequence in context: A348133 A278375 A106501 * A009070 A200066 A227789
KEYWORD
easy,nonn,tabl
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Oct 29 2001
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 17 08:10 EDT 2024. Contains 372579 sequences. (Running on oeis4.)