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.

A125567 Numbers k such that Sum_{x=2..k} (x-1)*3^(x-2) = ((2*k-3)*3^(k-1)+1)/4 is prime.

This page as a plain text file.
%I A125567 #15 Sep 23 2018 22:05:14
%S A125567 3,6,10,135,186,542,1162,1726,4179,13910,14514,78915,170026
%N A125567 Numbers k such that Sum_{x=2..k} (x-1)*3^(x-2) = ((2*k-3)*3^(k-1)+1)/4 is prime.
%C A125567 a(14) > 2*10^5. - _Robert Price_, Jan 25 2015
%e A125567 For k = 3, 6, 10 the corresponding primes are 7, 547, 83653.
%t A125567 s = 0; Do[s += (x-1)*3^(x-2); If[PrimeQ[s], Print[x]], {x, 10^4}]
%Y A125567 Cf. A119529.
%K A125567 hard,more,nonn
%O A125567 1,1
%A A125567 _Ryan Propper_, Jan 01 2007
%E A125567 a(10) from _Max Alekseyev_, Dec 10 2011
%E A125567 a(11)-a(13) from _Robert Price_, Jan 25 2015