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!)
A179416 a(n)=1 if (n modulo 65536)+1 is a quadratic residue of 65537, 0 otherwise. 1
1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
This sequence gives essentially the same information as A165471, but in contrast to it (and A165472), the period of this sequence is explicitly defined as 65536 (instead of 65537), so that in essence the zeros at A165471(k*65537) are silently skipped. Several derived sequences to be computed.
LINKS
FORMULA
a(n) = 1 if A165471(1+(n%65536))=+1, otherwise 0. Period 65536.
PROG
(MIT Scheme:)
(define (A179416 n) (1+halved (A165471 (1+ (modulo n 65536)))))
(define (1+halved n) (floor->exact (/ (1+ n) 2)))
(Sage)
def A179416_list(n) : # for n <= 65536
Q = quadratic_residues(65537)
return [int(i in Q) for i in (1..n)]
A179416_list(102) # Peter Luschny, Aug 08 2012
CROSSREFS
Sequence in context: A113681 A356163 A295895 * A360845 A155972 A010054
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 27 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 27 21:23 EDT 2024. Contains 372020 sequences. (Running on oeis4.)