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!)
A030016 Inverse binomial transform of {1, primes}. 3
1, 1, 0, 1, -2, 5, -14, 37, -90, 205, -442, 899, -1700, 2913, -4302, 4747, -1080, -14001, 55336, -150395, 346164, -716967, 1369430, -2432789, 4002994, -5964749, 7525018, -6123027, -4900092, 40900519, -134308944, 348584679, -798958750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Vladimir Kruchinin, D. V. Kruchinin, Composita and their properties , arXiv:1103.2582 [math.CO], 2011-2013.
N. J. A. Sloane, Transforms
FORMULA
a(n) = A008578(n+1) - sum(k=1..n, C(n,k-1)*a(k-1)). - Vladimir Kruchinin, Mar 05 2011
MAPLE
b:= n-> `if`(n=1, 1, ithprime(n-1)):
a:= proc(n) option remember;
b(n+1) -add(binomial(n, k-1) *a(k-1), k=1..n)
end:
seq(a(n), n=0..35); # Alois P. Heinz, Mar 06 2011
MATHEMATICA
b[n_] := If[n == 1, 1, Prime[n - 1]]; a[n_] := a[n] = b[n + 1] - Sum [Binomial[n, k - 1]*a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 35}] (* Jean-François Alcover, Mar 20 2014, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A005955 A186903 A062197 * A248733 A099485 A038990
KEYWORD
sign
AUTHOR
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 July 11 20:49 EDT 2024. Contains 374234 sequences. (Running on oeis4.)