cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A121031 Multiples of 11 containing an 11 in their decimal representation.

Original entry on oeis.org

11, 110, 1100, 1111, 1122, 1133, 1144, 1155, 1166, 1177, 1188, 1199, 2112, 2211, 3113, 3311, 4114, 4411, 5115, 5511, 6116, 6611, 7117, 7711, 8118, 8811, 9119, 9911, 11000, 11011, 11022, 11033, 11044, 11055, 11066, 11077, 11088, 11099, 11110
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 21 2006

Keywords

Crossrefs

Programs

  • 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 *)
  • 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

Formula

a(n) ~ 11n. - Charles R Greathouse IV, Feb 12 2017