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!)
A024530 Numerator of -Sum_{k=1..n} (-1)^k / prime(k). 11
0, 1, 1, 11, 47, 727, 7141, 151427, 2366603, 64131559, 1636722341, 57208085801, 1916138684507, 85982424199597, 3392993977055461, 172553478253276697, 8530444564835173531, 535885387802465283059, 30766248305796169627529 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Limit of the fractional values is A078437. - Charles R Greathouse IV, Apr 22 2011
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..350 (terms n = 1..100 from T. D. Noe)
FORMULA
a(n+1) = a(n)*prime(n+1) + (-1)^n*primorial(prime(n)) for n >= 2. - Alexandre Herrera, Sep 03 2023
EXAMPLE
0/1, 1/2, 1/6, 11/30, 47/210, 727/2310, 7141/30030, 151427/510510, ...
MAPLE
A024530 := n->numer(add((-1)^(k+1)/ithprime(k), k=1..n));
MATHEMATICA
a[n_] := Numerator[ -Total[(-1)^Range[n] / Prime[ Range[n]]]]; Table[a[n], {n, 0, 18}] (* Jean-François Alcover, Dec 12 2011 *)
PROG
(PARI)
a(n)=numerator(-sum(k=1, n, (-1)^k/prime(k)));
concat(0, vector(33, n, a(n))) /* show terms */
CROSSREFS
Denominators are A002110.
Sequence in context: A191499 A072372 A230982 * A117066 A042984 A364579
KEYWORD
nonn,frac,easy,nice
AUTHOR
EXTENSIONS
a(0)=0 prepended by Seiichi Manyama, Jul 25 2021
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 18 09:29 EDT 2024. Contains 371771 sequences. (Running on oeis4.)