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.

A220569 Smallest prime divisor of prime(n) + prime(n+1) + prime(n+2).

This page as a plain text file.
%I A220569 #10 Dec 17 2012 13:15:38
%S A220569 2,3,23,31,41,7,59,71,83,97,109,11,131,11,3,173,11,199,211,223,5,251,
%T A220569 269,7,7,311,11,7,349,7,5,11,5,439,457,3,487,503,3,13,19,5,7,19,607,3,
%U A220569 661,7,13,701,23,17,7,3,3,11,19,829,29,857,883,911,7,941
%N A220569 Smallest prime divisor of prime(n) + prime(n+1) + prime(n+2).
%H A220569 Zak Seidov, <a href="/A220569/b220569.txt">Table of n, a(n) for n = 1..1000</a>
%e A220569 a(6) = 7 because prime(6) + prime(6+1) + prime(6+2) = 13 + 17 + 19 = 49 and the smallest prime factor of 49 is 7.
%o A220569 (PARI) {a=2; b=3; c=5; for(n=1, 100, s=a+b+c;
%o A220569 dv=divisors(s); print1(dv[2]", "); a=b; b=c; c=nextprime(c+2))}
%Y A220569 Cf. A034961, A034962, A073681.
%K A220569 nonn
%O A220569 1,1
%A A220569 _Zak Seidov_, Dec 16 2012