OFFSET
1,1
COMMENTS
No more terms through 10^4.
Note that Sum(x=1,n,(x-1)*6^(x-1))/6 = (6^(n-1)*(5*n-6)+1)/25. Therefore this sequence consists of n such that (6^(n-1)*(5*n-6)+1)/25 is prime. - Max Alekseyev, Oct 18 2008
MATHEMATICA
s = 0; Do[s += (x-1)*6^(x-1)/6; If[PrimeQ[s], Print[x]], {x, 10^4}]
CROSSREFS
KEYWORD
hard,more,nonn
AUTHOR
Ryan Propper, Jan 01 2007
STATUS
approved