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.

A177018 a(n) is the smallest integer >= a(n-1) such that a(n) + A067076(n) + n-1 is an odd prime.

This page as a plain text file.
%I A177018 #12 Mar 05 2020 21:07:41
%S A177018 3,3,3,4,4,5,5,6,8,8,10,11,11,12,14,16,16,18,19,19,21,22,24,27,28,28,
%T A177018 29,29,30,36,37,39,39,43,43,45,47,48,50,52,52,56,56,57,57,62,67,68,68,
%U A177018 69,71,71,75,77,79,81,81,83,84,84,88,94,95,95
%N A177018 a(n) is the smallest integer >= a(n-1) such that a(n) + A067076(n) + n-1 is an odd prime.
%H A177018 Robert Israel, <a href="/A177018/b177018.txt">Table of n, a(n) for n = 1..10000</a>
%e A177018 3+0+0=3; 3+1+1=5; 3+2+2=7; 4+4+3=11; 4+5+4=13; etc.
%p A177018 N:= 100: # for a(1)..a(N)
%p A177018 A067076:= [seq((ithprime(i)-3)/2, i=2..N+1)]:
%p A177018 a:= Vector(N):
%p A177018 a[1]:= 3:
%p A177018 for i from 2 to N do
%p A177018   q:= nextprime(a[i-1]+A067076[i]+i-2);
%p A177018   a[i]:= q - A067076[i]-i+1;
%p A177018 od:
%p A177018 convert(a,list); # _Robert Israel_, Mar 05 2020
%o A177018 (PARI) n=0; c=0;for(i=1,99, t = n+c+A067076(c); if( t%2 == 1 && isprime(t), print1(n", "); c++,/*else*/ n++ )) /* _M. F. Hasler_, Jun 18 2010 */
%Y A177018 Cf. A067076, A169915, A175540.
%K A177018 nonn
%O A177018 1,1
%A A177018 _Vincenzo Librandi_, May 22 2010
%E A177018 Better definition from _M. F. Hasler_, Jun 18 2010
%E A177018 Edited by _N. J. A. Sloane_, Jul 18 2010