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

A000004
The zero sequence.
(Formerly M0000)
332
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
OFFSET
0,1
FORMULA
a(n) = 0 for all integer n.
MAPLE
A000004 := n->0;
MATHEMATICA
a[ n_] := 0;
Table[0, {n, 100}] (* Matthew House, Jul 14 2015 *)
LinearRecurrence[{1}, {0}, 102] (* Ray Chandler, Jul 15 2015 *)
PROG
(Magma) [ 0 : n in [0..100]];
(PARI) vector(100, n, 0)
(R) rep(0, 100)
(Haskell)
a000004 = const 0
a000004_list = repeat 0 -- Reinhard Zumkeller, May 07 2012
(Python) print([0 for n in range(102)]) # Michael S. Branicky, Apr 04 2022
CROSSREFS
Cf. A000012 (all 1's), A007395 (all 2's), A010701 (all 3's).
Cf. A000007(n) = 0^n: characteristic function of {0}.
Sequence in context: * A297046 A248805 A307721 A378651 A023976 A025469
KEYWORD
core,easy,nonn,mult
STATUS
approved