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.

A354221 a(n) is the numerator of the sum of reciprocals of the 2*n+1 consecutive primes starting with A353534(n).

Original entry on oeis.org

31, 2927, 24749279, 52404847006669763041, 264723826652711, 25709009860910962769666716861, 31275582984007762166936591, 9357116090687897728867556889841, 13585328068403621603022853, 4395564666287059721647967305937566473834609232641255659809, 15360643606799479140185671512081451
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, May 29 2022

Keywords

Examples

			a(3) = 24749279 because A353534(3) = 5 and 1/5 + 1/7 + 1/11 + 1/13 + 1/17 + 1/19 + 1/23 = 24749279/37182145.
		

Crossrefs

Cf. A353534.

Programs

  • Maple
    f:= proc(n) local i,k,v;
       for k from 1 do
         v:= numer(add(1/ithprime(i),i=k..k+2*n));
         if isprime(v) then return v fi
       od
    end proc:
    map(f, [$1..30]);