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!)
A255484 a(n) = Product_{k=0..n} prime(k+1)*(binomial(n,k) mod 2). 2
2, 6, 0, 210, 0, 0, 0, 9699690, 0, 0, 0, 0, 0, 0, 0, 32589158477190044730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525896479052627740771371797072411912900610967452630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
A123098 is a much better version of this sequence.
LINKS
MAPLE
f:=n->mul(ithprime(k+1)*(binomial(n, k) mod 2), k=0..n);
[seq(f(n), n=0..60)];
PROG
(Python)
from operator import mul
from functools import reduce
from sympy import prime
def A255484(n):
return reduce(mul, (0 if ~n & k else prime(k+1) for k in range(n+1))) # Chai Wah Wu, Feb 09 2016
CROSSREFS
Sequence in context: A122685 A109581 A056876 * A021797 A068959 A285849
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 28 2015
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 23 11:22 EDT 2024. Contains 371913 sequences. (Running on oeis4.)