OFFSET
0,1
COMMENTS
LINKS
Antti Karttunen,Table of n, a(n) for n = 0..65537
Index entries for linear recurrences with constant coefficients,signature (0,0,0,0,0,0,0,0,0,0,0,1).
FORMULA
For the general case: the characteristic function of numbers that are not multiples of m is a(n) = floor((n-1)/m) - floor(n/m) + 1, m,n > 0. -Boris Putievskiy,May 08 2013
MAPLE
a:=n->`if`(modp(n, 12)=0, 0, 1); seq(a(n), n=0..150); #Muniru A Asiru,Sep 21 2018
MATHEMATICA
If[Divisible[#, 12], 0, 1]&/@Range[0, 120] (*Harvey P. Dale,Apr 03 2015 *)
PROG
(PARI) a(n)=!!(n%12) \\Charles R Greathouse IV,Aug 21 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller,Nov 30 2009
STATUS
approved