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.

A145714 a(n) = ceiling(sqrt(2*A145701(n))).

This page as a plain text file.
%I A145714 #10 Mar 04 2019 06:07:52
%S A145714 3,5,6,11,12,19,25,29,42,48,65,72,79,84,90,101,174,204,205,209,221,
%T A145714 245,264,275,289,299,306,349,371,372,408,409,415,449,456,474,521,535,
%U A145714 546,569,571,575,594
%N A145714 a(n) = ceiling(sqrt(2*A145701(n))).
%C A145714 If p_n is the n-th prime, then ceiling(sqrt(2p_n)) is in the sequence iff A145236(n) = A145236(n+1).
%p A145714 A145701 :=proc(n) local p; if n = 1 then return 3; end if; p := nextprime(procname(n-1)) ; while true do if isprime(p) and isprime(p+2) then if floor(sqrt(2*p)) <> floor( sqrt(2*p+4)) then return p; end if; end if; p := nextprime(p) ; end do; end proc:
%p A145714 A145714 := proc(n) ceil(sqrt(2*A145701(n))) ; end proc:
%p A145714 for n from 1 to 80 do printf("%d,\n",A145714(n)) ; end do; # _R. J. Mathar_, Aug 02 2010
%Y A145714 Cf. A145236, A145701.
%K A145714 nonn
%O A145714 1,1
%A A145714 _Vladimir Shevelev_, Oct 16 2008
%E A145714 More terms from _R. J. Mathar_, Aug 02 2010