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.

A139000 a(n) = discriminant of n-th Bell polynomial.

Original entry on oeis.org

0, 1, 1, 5, 257, 227081, 5180893281, 4280906663314189, 171185545597850136406017, 426885502327596067385688208587793, 83152665259106642682190066734067859360190625, 1549180370826247785860196691818235616463808908569519107349
Offset: 0

Views

Author

Artur Jasinski, Apr 05 2008

Keywords

Examples

			a(4) = 257 because discriminant of the 4th Bell polynomial x + 7 x^2 + 6 x^3 + x^4 is 257.
		

Crossrefs

Cf. A106800.

Programs

  • Maple
    seq(discrim(BellB(n, x), x), n = 0..12); # Peter Luschny, Oct 08 2023
  • Mathematica
    Table[Discriminant[BellB[n, x], x], {n, 0, 10}] (* Vaclav Kotesovec, Oct 08 2023 *)
  • PARI
    a(n) = poldisc(Pol(vector(n+1, k, stirling(n, k, 2)))); \\ Michel Marcus, Oct 07 2023

Extensions

Offset set to 0 by Peter Luschny, Oct 08 2023