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!)
A177835 Primes p for which a smaller prime q exists with A000120(q) >= 2*A000120(p)-1. 2
17, 37, 41, 67, 73, 97, 131, 137, 139, 149, 163, 193, 197, 257, 263, 269, 277, 281, 293, 337, 353, 389, 401, 449, 521, 523, 547, 577, 593, 641, 643, 673, 769, 773, 1031, 1033, 1039, 1049, 1051, 1061, 1063, 1069, 1091, 1093, 1097, 1109, 1123, 1129, 1153, 1163, 1171 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A177836 for a comparison with A095075.
LINKS
MAPLE
read("transforms") ; A000120 := proc(n) wt(n) ; end proc:
isA177835 := proc(p) if isprime(p) then q := 2 ; while q < p do if A000120(q) >= 2*A000120(p)-1 then return true; end if; q := nextprime(q) ; end do: return false; else false; end if; end proc:
for i from 1 to 2000 do if isA177835(ithprime(i)) then printf("%d, ", ithprime(i)) ; end if; end do: # R. J. Mathar, May 31 2010
MATHEMATICA
With[{b = DigitCount[Prime[Range[200]], 2, 1]}, Rest@ Prime[Position[2*b - 1 - FoldList[Max, b], _?(# <= 0 &)] // Flatten]] (* Amiram Eldar, Jul 25 2023 *)
CROSSREFS
Sequence in context: A098849 A319059 A217195 * A075698 A165493 A339531
KEYWORD
nonn,easy,base
AUTHOR
Vladimir Shevelev, May 14 2010
EXTENSIONS
keyword:base and more terms added by R. J. Mathar, May 31 2010
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 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)