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

A122550
Floor of the slanted side of a right trapezoid formed by 3 consecutive primes.
0
4, 6, 9, 12, 14, 18, 19, 25, 30, 32, 38, 41, 43, 48, 54, 59, 61, 67, 71, 73, 79, 83, 90, 97, 101, 103, 107, 109, 114, 128, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 212, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277
OFFSET
1,1
COMMENTS
It is easy to prove that for any 3 consecutive primes p1,p2,p3, a(n) always lies between p2 and p3.
EXAMPLE
For the first 3 prime numbers, go up 2, go right 3 and go down 5. Connecting the figure to form a right trapezoid we have the slanted side = sqrt(18). The integer part of this is 4, the first term of the sequence.
PROG
(PARI) a(n) = { my(p1=prime(n), p2=prime(n+1), p3=prime(n+2), y=p3-p1); sqrtint(p2^2 + y^2) }
CROSSREFS
Sequence in context: A189533 A047408 A060644 * A191407 A076083 A094202
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Sep 20 2006
STATUS
approved