login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A275366
Nearest integer to 1/erfc(n/sqrt(2)).
2
1, 3, 22, 370, 15787, 1744278, 506797346, 390682215445, 803734397655348, 4430313100526836693, 65618063552490194383194, 2616897361902846669558232538, 281455127862349591601857362987344, 81737217988908649002650313009555641847, 64155724364921456082725604130103414484969173
OFFSET
0,2
COMMENTS
Samples from a normally distributed random variable that are at least n standard deviations away from the mean have an approximately 1-in-a(n) chance of occurring.
LINKS
FORMULA
a(n) = round( 1/erfc(n/sqrt(2)) ).
EXAMPLE
A "five-sigma" event (five standard deviations away from the mean) has a 1 in 1744278 chance of occurring. This is the requirement in particle physics for an anomaly to be recognized as a real effect, not merely a statistical fluctuation.
MATHEMATICA
Table[Round[1/Erfc[n/Sqrt[2]]], {n, 1, 16}]
PROG
(PARI) default(realprecision, 100); for(n=1, 20, print1(round(1/erfc(n/sqrt(2))), ", ")) \\ G. C. Greubel, Oct 07 2018
(Magma) [Round(1/Erfc(n/Sqrt(2))): n in [1..20]]; // G. C. Greubel, Oct 07 2018
CROSSREFS
Cf. probabilities of normal variables exceeding mean by n standard deviations: A239382, A239383, A239384, A239385, A239386, A239387.
One-sided result for n sigma: A219337 (nearest integer to 2/erfc(n/sqrt(2))).
Sequence in context: A099750 A219268 A259919 * A196734 A271849 A271850
KEYWORD
nonn
AUTHOR
Jeremy Tan, Jul 24 2016
EXTENSIONS
a(0)=1 prepended by Greg Huber, Jul 05 2022
STATUS
approved