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!)
A249747 a(n) = floor((A002110(n) * A054272(n)) / A001248(n)). 2
1, 2, 8, 51, 496, 6041, 97155, 1746481, 38377034, 1053921489, 31722366805, 1127475187757, 45429396874080, 1910408631449923, 87682336584597009, 4571067440374822934, 260160909199262899454, 15823372061924831882182, 1034588557961336117180784, 72606463908572608290939197, 5235472173106695729625747152, 407296805992490241506213234700 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = floor((A002110(n) * A054272(n)) / A001248(n)).
The ratio a(n) / A005867(n) seems to stay near 1. Note that A005867(n) = A000010(A002110(n)). See also formulas in A054272.
PROG
(MIT/GNU Scheme) (define (A249747 n) (floor->exact (/ (* (A002110 n) (A054272 n)) (A001248 n))))
(PARI)
default(primelimit, 2^31 + 2^30);
A002110(n) = prod(i=1, n, prime(i));
A054272(n) = 1 + primepi(prime(n)^2) - n;
A249747(n) = (A054272(n)*A002110(n))\(prime(n)^2);
for(n=1, 100, write("b249747.txt", n, " ", A249747(n)));
CROSSREFS
Sequence in context: A351772 A277506 A059429 * A191480 A013555 A018987
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 08 2014
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 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)