cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A130971 Smallest prime p, such that either |A000040(n)-p| or A000040(n)+p is of the form 2^k.

Original entry on oeis.org

2, 2, 3, 3, 3, 3, 13, 3, 7, 3, 23, 5, 23, 11, 17, 11, 5, 3, 3, 7, 41, 47, 19, 73, 31, 37, 71, 43, 19, 97, 131, 3, 73, 11, 107, 23, 29, 131, 89, 83, 163, 53, 127, 191, 59, 71, 83, 191, 29, 101, 23, 17, 113, 5, 193, 7, 13, 239, 149, 277, 229, 37, 179, 307, 199, 61, 181, 353, 283
Offset: 1

Views

Author

Antti Karttunen, Jun 19 2007

Keywords

Crossrefs

Programs

  • Scheme
    (define (A130971 n) (let ((p1 (A000040 n))) (let loop ((i 1) (p2 2)) (cond ((pow2? (abs (- p1 p2))) p2) ((pow2? (+ p1 p2)) p2) (else (loop (+ i 1) (A000040 (+ i 1))))))))
    (define (pow2? n) (and (> n 0) (zero? (A004198bi n (- n 1)))))

Extensions

Extended by Ray Chandler, Aug 06 2010