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.

A138634 Nonnegative integers k such that 17*k-9 is prime.

This page as a plain text file.
%I A138634 #8 Feb 12 2020 04:40:33
%S A138634 4,8,14,16,20,26,28,34,44,46,58,70,74,76,86,88,98,104,110,118,124,134,
%T A138634 140,146,154,158,160,184,188,190,196,200,208,218,226,236,244,250,266,
%U A138634 268,274,280,296,308,310,320,334,338,344,356,368,380,386,394,400
%N A138634 Nonnegative integers k such that 17*k-9 is prime.
%H A138634 Daniel Starodubtsev, <a href="/A138634/b138634.txt">Table of n, a(n) for n = 1..10000</a>
%e A138634 17*4-9=59, 17*8-9=127, 17*14-9=229, 17*16-9=263, 17*20-9=331, 17*26-9=433, 17*28-9=467, ...
%t A138634 a={};Do[x=17*n-9;If[PrimeQ[x],AppendTo[a,n]],{n,10^2}];a
%t A138634 Select[Range[500],PrimeQ[17#-9]&] (* _Harvey P. Dale_, Jul 26 2018 *)
%K A138634 nonn
%O A138634 1,1
%A A138634 _Vladimir Joseph Stephan Orlovsky_, May 14 2008
%E A138634 More terms from _Harvey P. Dale_, Jul 26 2018