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.

A274358 Numbers n such that n and n+1 both have 14 divisors.

Original entry on oeis.org

29888, 109375, 436671, 716607, 2829248, 3329343, 3948992, 5195583, 5568831, 8801216, 9767871, 10667456, 10947392, 12347072, 12627008, 14713407, 14959808, 16359488, 17479232, 20032191, 20278592, 20558528, 20965311, 23077952, 23544512, 24109375, 24477632
Offset: 1

Views

Author

Keywords

Crossrefs

Intersection of A005237 and A030632.

Programs

  • PARI
    is(n)=numdiv(n)==14 && numdiv(n+1)==14
    
  • PARI
    list(lim)=my(v=List(),p6,t); forprime(p=2,sqrtnint(lim\2,6), p6=p^6; forprime(q=2,lim\p6, if(p==q,next); t=p6*q; if(numdiv(t+1)==14, listput(v,t)); if(numdiv(t-1)==14, listput(v,t-1)))); Set(v)