OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
FORMULA
a(n) ~ 11n. - Charles R Greathouse IV, Feb 12 2017
MATHEMATICA
Select[11*Range[1100], MemberQ[Partition[IntegerDigits[#], 2, 1], {1, 1}]&] (* Harvey P. Dale, Feb 16 2014 *)
Select[11Range[1100], SequenceCount[IntegerDigits[#], {1, 1}]>0&] (* Harvey P. Dale, Jun 14 2024 *)
PROG
(PARI) is(n)=if(n%11, return(0)); while(n>10, if(n%100==11, return(1)); n\=10); 0 \\ Charles R Greathouse IV, Feb 12 2017
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Reinhard Zumkeller, Jul 21 2006
STATUS
approved