cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A275366 Nearest integer to 1/erfc(n/sqrt(2)).

Original entry on oeis.org

1, 3, 22, 370, 15787, 1744278, 506797346, 390682215445, 803734397655348, 4430313100526836693, 65618063552490194383194, 2616897361902846669558232538, 281455127862349591601857362987344, 81737217988908649002650313009555641847, 64155724364921456082725604130103414484969173
Offset: 0

Views

Author

Jeremy Tan, Jul 24 2016

Keywords

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.

Examples

			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.
		

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))).

Programs

  • Magma
    [Round(1/Erfc(n/Sqrt(2))): n in [1..20]]; // G. C. Greubel, Oct 07 2018
  • Mathematica
    Table[Round[1/Erfc[n/Sqrt[2]]], {n, 1, 16}]
  • PARI
    default(realprecision, 100); for(n=1, 20, print1(round(1/erfc(n/sqrt(2))), ", ")) \\ G. C. Greubel, Oct 07 2018
    

Formula

a(n) = round( 1/erfc(n/sqrt(2)) ).

Extensions

a(0)=1 prepended by Greg Huber, Jul 05 2022