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!)
A121572 Subprimorials: inverse binomial transform of primorials (A002110). 4
1, 1, 3, 17, 119, 1509, 18799, 342397, 6340263, 151918421, 4619754311, 140219120601, 5396354613583, 221721908976697, 9431597787000999, 447473598316521449, 24163152239530299719, 1444153946379288324477, 87200644323074509092943, 5929294512595059362045041 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
By analogy with subfactorials, which are the inverse binomial transform of the factorials.
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) C(n,k) Prime(k)#, where p# is p primorial and Prime(0)# = 1.
A007318^(-1) * A002110. - Gary W. Adamson, Dec 14 2007
EXAMPLE
a(3) = 30 - 3*6 + 3*2 - 1 = 17.
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, ithprime(n)*b(n-1)) end:
a:= n-> add(binomial(n, k)*b(k)*(-1)^(n-k), k=0..n):
seq(a(n), n=0..20); # Alois P. Heinz, Sep 19 2016
MATHEMATICA
b[n_] := b[n] = If[n==0, 1, Prime[n]*b[n-1]]; a[n_] := Sum[Binomial[n, k]* b[k]*(-1)^(n-k), {k, 0, n}]; Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Mar 13 2017, after Alois P. Heinz *)
CROSSREFS
See A079266 for a different definition of subprimorial.
Sequence in context: A165976 A368965 A344553 * A340993 A249924 A305307
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Sep 18 2007
Edited by N. J. A. Sloane, May 15 2008 at the suggestion of R. J. Mathar
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)