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!)
A305702 a(n) is the denominator of Sum_{primes p < n} 1/(n-p). 2
1, 1, 1, 2, 6, 12, 20, 10, 84, 840, 72, 630, 1320, 2772, 1560, 90090, 42, 240240, 1904, 46410, 95760, 639540, 5040, 9699690, 637560, 14316120, 92400, 176125950, 308880, 20078358300, 475020, 67690350, 7447440, 116925953760, 110880, 1002802450650, 318240, 122453100, 906665760, 165723680430 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The first n >= 2 for which a(n) <> A130492(n-1) is 32.
LINKS
EXAMPLE
Sum_{primes p < 6} 1/(6-p) = 1/(6-2) + 1/(6-3) + 1/(6-5) = 19/12 so a(6) = 12.
MAPLE
N:= 100: # to get a(1)..a(N)
P:= select(isprime, [2, seq(i, i=3..N, 2)]):
seq(denom(add(1/(n-p), p=select(`<`, P, n))), n=1..N);
PROG
(PARI) a(n) = my(p=select(x->isprime(x), [1..n-1])); denominator(sum(k=1, #p, 1/(n-p[k]))); \\ Michel Marcus, Jun 09 2018
CROSSREFS
Sequence in context: A139084 A086958 A130492 * A152222 A139082 A061078
KEYWORD
nonn,frac
AUTHOR
Robert Israel, Jun 08 2018
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)