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.
%I A275771 #14 Sep 05 2016 17:26:08 %S A275771 0,0,0,1,2,3,4,5,8,9,12,11,14,17,20,23,24,23,24,29,36,37,38,35,36,41, %T A275771 48,53,56,53,50,51,56,63,76,75,74,63,74,77,94,89,90,79,90,91,112,103, %U A275771 106,87,108,117,140 %N A275771 a(n+3) = A008578(n+1) -a(n), a(0) = a(1) = a(2) = 0. %C A275771 A008578 gives the noncomposite numbers, the prime numbers at the beginning of the 20th century which included 1. %C A275771 a(2n) = 0, 0, 2, 4, 8, 12, 14, 20, 24, 24, ... always even? %C A275771 a(2n+3) = 1, 3, 5, 9, 11, 17, 23, 23, 29, ... always odd? %C A275771 First differences: 0, 0, 1, 1, 1, 1, 1, 3, 1, 3, -1, 3, 3, 3, 3, 1, -1, 1, 5, 7, ... . %e A275771 a(3) = 1-0 = 1, a(4) = 2-0 = 2, a(5) = 3-0 = 3, a(6) = 5-1 = 4, a(6) = 7-2 = 5, ... . %t A275771 RecurrenceTable[{a[n + 3] == If[n == 0, 1, Prime[n]] - a[n], a[0] == 0, a[1] == 0, a[2] == 0}, a, {n, 0, 52}] (* _Michael De Vlieger_, Aug 08 2016 *) %Y A275771 Cf. A000040, A008578, A113405, A274817. %K A275771 nonn %O A275771 0,5 %A A275771 _Paul Curtz_, Aug 08 2016