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

A166048
a(n) = (A166049(n)-1)/4.
2
0, 1, 2, 3, 5, 6, 9, 12, 20, 21, 23, 30, 41, 42, 56, 72, 90, 110, 132, 156, 182, 210, 240, 272, 306, 342, 380, 420, 462, 506, 552, 600, 650, 702, 756, 812, 870, 930, 992, 1056, 1122, 1190, 1260, 1332, 1406, 1482, 1560, 1640, 1722, 1806, 1892, 1980, 2070
OFFSET
1,3
COMMENTS
Indexing sequence for A166049.
PROG
(MIT Scheme with macro MATCHING-POS by AK):
(define A166048 (MATCHING-POS 1 0 (lambda (n) (let ((w (A016813 n)) (hp (A005843 n))) (let loop ((i 1) (s 1)) (cond ((< s 0) #f) ((>= i hp) #t) (else (loop (1+ i) (+ s (jacobi-symbol (1+ i) w))))))))))
CROSSREFS
Sequence in context: A241742 A212584 A330228 * A240306 A094873 A240726
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 08 2009
STATUS
approved