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.

A288162 Numbers whose prime factors are 2 and 13.

Original entry on oeis.org

26, 52, 104, 208, 338, 416, 676, 832, 1352, 1664, 2704, 3328, 4394, 5408, 6656, 8788, 10816, 13312, 17576, 21632, 26624, 35152, 43264, 53248, 57122, 70304, 86528, 106496, 114244, 140608, 173056, 212992, 228488, 281216, 346112, 425984, 456976, 562432, 692224, 742586, 851968, 913952
Offset: 1

Views

Author

Bernard Schott, Jun 06 2017

Keywords

Comments

Numbers k such that phi(k)/k = 6/13.

Crossrefs

Programs

  • Magma
    [n:n in [1..100000] | Set(PrimeDivisors(n)) eq {2,13}];  // Marius A. Burtea, May 10 2019
  • Mathematica
    Select[Range[920000],FactorInteger[#][[All,1]]=={2,13}&] (* Harvey P. Dale, Jun 18 2021 *)
  • PARI
    is(n) = factor(n)[, 1]~==[2, 13] \\ Felix Fröhlich, Jun 06 2017
    
  • PARI
    list(lim)=my(v=List(),t); for(n=1,logint(lim\2,13), t=13^n; while((t<<=1)<=lim, listput(v,t))); Set(v) \\ Charles R Greathouse IV, Jun 11 2017
    

Formula

a(n) = 26 * A107326(n). - David A. Corneth, Jun 06 2017
Sum_{n>=1} 1/a(n) = 1/12. - Amiram Eldar, Dec 22 2020