login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A168184 Characteristic function of numbers that are not multiples of 10. 17
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n+10) = a(n);
a(n) = A000007(A010879(n));
a(A067251(n)) = 1; a(A008592(n)) = 0;
not the same as A168046: a(n)=A168046 for n<=100;
A033442(n) = Sum_{k=0..n} a(k)*(n-k).
Dirichlet g.f.: (1-1/10^s)*zeta(s). - R. J. Mathar, Feb 19 2011
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
MATHEMATICA
Table[If[Mod[n, 10]==0, 0, 1], {n, 0, 110}] (* or *) PadRight[{}, 110, {0, 1, 1, 1, 1, 1, 1, 1, 1, 1}] (* Harvey P. Dale, Jun 03 2023 *)
PROG
(Haskell)
a168184 = (1 -) . (0 ^) . (`mod` 10)
a168184_list = cycle [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
-- Reinhard Zumkeller, Oct 10 2012
(PARI) a(n)=n%10>0 \\ Charles R Greathouse IV, Sep 24 2015
CROSSREFS
Sequence in context: A368905 A188642 A168046 * A013595 A339145 A368912
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Nov 30 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 11:14 EDT 2024. Contains 371791 sequences. (Running on oeis4.)