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.

A022831 a(n) = c(1)p(1) + ... + c(n)p(n), where c(i) = 1 if a(i-1) <= p(i) and c(i) = -1 if a(i-1) > p(i), for i = 1,...,n (p(i) = primes).

Original entry on oeis.org

2, 5, 10, 3, 14, 1, 18, 37, 14, 43, 12, 49, 8, 51, 4, 57, 116, 55, 122, 51, 124, 45, 128, 39, 136, 35, 138, 31, 140, 27, 154, 23, 160, 21, 170, 19, 176, 13, 180, 7, 186, 5, 196, 3, 200, 1, 212, 435, 208, 437, 204, 443, 202, 453, 196, 459, 190, 461, 184
Offset: 1

Views

Author

Keywords

Comments

a(n) <= 2*prime(n). Conjecture: every number occurs in the sequence at most finitely many times. - Thomas Ordowski, Dec 03 2016

Examples

			a(1)=2, a(2)=2+3=5, a(3)=5+5=10, a(4)=10-7=3, a(5)=3+11=14, a(6)=14-13=1, ...
		

Crossrefs

Cf. A064365.

Programs

  • Haskell
    a022831 n = a022831_list !! n
    a022831_list = 2 : f 2 (tail a000040_list) where
       f x (p:ps) | x' > 0    = x' : f x' ps
                  | otherwise = xp : f xp ps where x' = x - p; xp = x + p
    -- Reinhard Zumkeller, Apr 26 2012

Extensions

Name corrected by Sean A. Irvine, May 22 2019