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!)
A095281 Upper Wythoff primes, i.e., primes in A001950. 3
2, 5, 7, 13, 23, 31, 41, 47, 73, 83, 89, 107, 109, 149, 151, 157, 167, 191, 193, 227, 233, 251, 269, 277, 293, 311, 337, 353, 379, 397, 421, 431, 439, 463, 479, 523, 541, 547, 557, 599, 607, 617, 641, 659, 683, 691, 701, 709, 719, 727, 733, 743 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Contains all primes p whose Zeckendorf-expansion A014417(p) ends with an odd number of 0's.
LINKS
PROG
(Python)
from math import isqrt
from itertools import count, islice
from sympy import isprime
def A095281_gen(): # generator of terms
return filter(isprime, ((n+isqrt(5*n**2)>>1)+n for n in count(1)))
A095281_list = list(islice(A095281_gen(), 30)) # Chai Wah Wu, Aug 16 2022
CROSSREFS
Intersection of A000040 & A001950. Complement of A095280 in A000040. Cf. A095081, A095083, A095084, A095290.
Sequence in context: A252281 A165319 A094712 * A106889 A155028 A119839
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 04 2004
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 24 14:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)