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.

A103676 Numbers m such that in binary representation m! contains 5!.

Original entry on oeis.org

5, 10, 12, 22, 23, 25, 27, 29, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99
Offset: 1

Views

Author

Reinhard Zumkeller, Feb 12 2005

Keywords

Comments

Complement of A103677: A103673(a(n))=1, A103673(A103677(n))=0.

Crossrefs

Programs

  • Mathematica
    Select[Range[100],MemberQ[Partition[IntegerDigits[#!,2],7,1],{1,1,1,1,0,0,0}]&] (* Harvey P. Dale, Apr 09 2012 *)
  • PARI
    is(n)=n=n!; while(n>119, my(e=valuation(n, 2), e1=valuation((n>>=e)+1, 2)); n>>=e1; if(e>2 && e1>3, return(1))); 2 \\ Charles R Greathouse IV, Apr 07 2013