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.

A163926 Number of nonprime numbers k such that the largest divisor of n*k <= sqrt(n*k) is n.

Original entry on oeis.org

1, 1, 3, 3, 6, 4, 10, 6, 8, 7, 16, 6, 22, 12, 11, 9, 30, 9, 38, 11, 17, 18, 48, 11, 26, 24, 20, 14, 61, 13, 72, 18, 28, 32, 29, 13, 87, 40, 33, 18, 101, 17, 115, 25, 26, 50, 131, 19, 59, 29, 44, 29, 151, 23, 47, 24, 52, 63, 171, 20, 189, 75, 40, 32, 55, 27, 211, 42, 66, 31, 232
Offset: 1

Views

Author

Keywords

Crossrefs

Row lengths of A163925.

Programs

  • Haskell
    a163926 = length . a163925_row  -- Reinhard Zumkeller, Mar 15 2014
  • PARI
    a(n)=local(r,d);r=0;for(k=n,n^2,if(!isprime(k),d=divisors(n*k);if(n==d[(#d+1)\2],r++)));r