login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A110997 Powers equal to (sum of first k primes) minus 1. 2
1, 4, 9, 16, 27, 128, 196, 839056, 7796654478001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
I have checked out to the first 250000 primes but the last entry is at the 504th prime, 3607.
LINKS
EXAMPLE
128 is a term because 128 = -1 + Sum_{i=1..10} prime(i) = 2^7.
MAPLE
with(numtheory); egcd := proc(n) local L; L:=map(proc(z) z[2] end, ifactors(n)[2]); igcd(op(L)) end: s := proc(n) option remember; local p; if n=1 then [1, 2] else p:=ithprime(n); [n, s(n-1)[2]+p] fi end; t := proc(n) option remember; [n, s(n)[2]-1] end; PW:=[]; for z to 1 do for j from 1 to 250000 do if egcd(t(j)[2])>1 or t(j)[2]=1 then PW:=[op(PW), t(j)] fi od od; PW;
MATHEMATICA
s = 0; Do[s = s + Prime[n]; If[s == 2 || GCD @@ Transpose[ FactorInteger[s - 1]][[2]] > 1, Print[s - 1]], {n, 10^6}] (* Robert G. Wilson v, Oct 02 2005 *)
CROSSREFS
Intersection of A001597 and A237589.
Sequence in context: A283549 A137354 A113495 * A001640 A161328 A073141
KEYWORD
nonn,more
AUTHOR
Walter Kehowski, Sep 30 2005
EXTENSIONS
Initial 1 and a(9) added by Jinyuan Wang, Aug 10 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 29 10:04 EDT 2024. Contains 372113 sequences. (Running on oeis4.)