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.

A214451 Arithmetic mean of next a(n) successive squares of positive integers is prime.

This page as a plain text file.
%I A214451 #8 May 02 2018 22:35:43
%S A214451 5,11,29,43,17,131,13,7,17,7,53,19,25,35,65,59,17,35,113,43,25,35,5,7,
%T A214451 5,11,89,23,17,35,29,43,5,31,109,71,65,7,41,31,61,35,25,107,25,11,41,
%U A214451 47,25,175,41,35,29,23,17,43,197,91,13,95,17,47,5,7,25,11
%N A214451 Arithmetic mean of next a(n) successive squares of positive integers is prime.
%C A214451 Corresponding primes (arithmetic means) :
%C A214451 11, 131, 1031, 4643, 9433, 30671, 59063, 64013, 70249, 76733, 94483, 117679, 133277, 156127, 198377, 257339, 297049, 326143, 417089, 522883, 573101, 619471, 651251, 660973, 670763
%C A214451 All terms are in A007310.  Do all members of A007310 except 1 occur? - _Robert Israel_, May 02 2018
%H A214451 Robert Israel, <a href="/A214451/b214451.txt">Table of n, a(n) for n = 1..10000</a>
%e A214451 (1+4+9+16+25)/5 = 11, so a(1)=5. The next set of successive squares with prime arithmetic mean: (6^2 + 7^2 + ... + 16^2)/11=131, so a(2)=11.
%p A214451 r:= 0:
%p A214451 for n from 1 to 100 do
%p A214451   t:= 0:
%p A214451   for j from r+1 do
%p A214451     t:= t + j^2;
%p A214451     s:= t/(j-r);
%p A214451     if s::integer and isprime(s) then
%p A214451       A[n]:= j-r;
%p A214451       r:= j;
%p A214451       break
%p A214451     fi
%p A214451   od;
%p A214451 od:
%p A214451 seq(A[i],i=1..100); # _Robert Israel_, May 02 2018
%Y A214451 Cf. A000040, A000290, A007310, A214442, A214444.
%K A214451 nonn
%O A214451 1,1
%A A214451 _Alex Ratushnyak_, Jul 18 2012