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.

A013634 a(n) = nextprime(n) + n.

This page as a plain text file.
%I A013634 #19 Jul 08 2025 02:49:44
%S A013634 2,3,5,8,9,12,13,18,19,20,21,24,25,30,31,32,33,36,37,42,43,44,45,52,
%T A013634 53,54,55,56,57,60,61,68,69,70,71,72,73,78,79,80,81,84,85,90,91,92,93,
%U A013634 100,101,102,103,104,105,112,113,114,115,116,117,120,121,128,129,130
%N A013634 a(n) = nextprime(n) + n.
%H A013634 Vincenzo Librandi, <a href="/A013634/b013634.txt">Table of n, a(n) for n = 0..5000</a>
%F A013634 a(n) = A151800(n) + n.
%p A013634 [ seq(nextprime(i)+i,i=0..100) ];
%t A013634 Table[n+NextPrime[n],{n,0,120}] (* _Harvey P. Dale_, May 03 2013 *)
%t A013634 Array[NextPrime[#] + # &, 80, 0] (* _Vincenzo Librandi_, Dec 27 2018 *)
%o A013634 (Magma) [NextPrime(n) + n: n in [0..80]]; // _Vincenzo Librandi_, Dec 27 2018
%Y A013634 Cf. A013632, A151800.
%K A013634 nonn
%O A013634 0,1
%A A013634 _N. J. A. Sloane_