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

A247515
Numbers k such that 2*floor(sqrt(prime(k))) < floor(2*sqrt(prime(k))).
4
2, 4, 6, 9, 11, 14, 15, 17, 18, 21, 22, 25, 30, 33, 34, 37, 38, 39, 43, 44, 47, 48, 53, 54, 59, 60, 61, 63, 64, 65, 66, 69, 70, 71, 72, 76, 77, 78, 82, 83, 84, 85, 90, 91, 92, 97, 98, 99, 102, 103, 104, 105, 110, 111, 112, 113, 114, 119, 120, 121, 122, 127
OFFSET
1,1
COMMENTS
A117767(a(n)) < A247485(a(n)); complement of A247514.
LINKS
MATHEMATICA
A247515Q[k_]:=With[{r=Sqrt[Prime[k]]}, 2Floor[r]<Floor[2r]];
Select[Range[200], A247515Q] (* Paolo Xausa, Oct 23 2023 *)
PROG
(Haskell)
a247515 n = a247515_list !! (n-1)
a247515_list = filter (\x -> a117767 x < a247485 x) [1..]
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Sep 20 2014
STATUS
approved