OFFSET
0,1
LINKS
N. J. A. Sloane, Table of n, a(n) for n = 0..1000 [Useful when plotting one sequence against another.]
Luis Manuel Rivera, Integer sequences and k-commuting permutations, arXiv preprint arXiv:1406.3081 [math.CO], 2014-2015.
N. J. A. Sloane, "A Handbook of Integer Sequences" Fifty Years Later, arXiv:2301.03149 [math.NT], 2023, p. 10.
Index entries for linear recurrences with constant coefficients, signature (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
KEYWORD
core,easy,nonn,mult
AUTHOR
STATUS
approved