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!)
A110423 a(n) = (n+1)(n+2)...(n+prime(k)) where prime(k) <= n < prime(k+1). 2
12, 120, 210, 30240, 55440, 17297280, 32432400, 57657600, 98017920, 28158588057600, 53970627110400, 64764752532480000, 124903451312640000, 233153109116928000, 422590010274432000, 830034394580628357120000 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
FORMULA
a(p) = (2p)!/p! if p is a prime.
a(n) = (n+A007917(n))!/n!. - Robert Israel, Aug 18 2019
EXAMPLE
a(6) = 7*8*9*10*11 = 55440.
MAPLE
p:=proc(n) if isprime(n)=true then n else prevprime(n) fi end: a:=n->product(n+j, j=1..p(n)): seq(a(n), n=2..19); # p is a modified prevprime command (for n prime yields n rather than the previous prime) # Emeric Deutsch, Aug 07 2005
# Simpler alternative:
seq((n+prevprime(n+1))!/n!, n=2..20); # Robert Israel, Aug 18 2019
MATHEMATICA
Table[Pochhammer[n+1, NextPrime[n+1, -1]], {n, 2, 20}] (* Jean-François Alcover, Jul 19 2020 *)
CROSSREFS
Sequence in context: A075366 A276668 A076633 * A006953 A164877 A121032
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Aug 01 2005
EXTENSIONS
More terms from Emeric Deutsch, Aug 07 2005
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 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)