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.

A281702 Numbers k such that A001221(k) = A001221(A000326(k)).

Original entry on oeis.org

1, 2, 6, 10, 14, 18, 30, 34, 38, 42, 46, 50, 58, 66, 78, 86, 90, 94, 98, 106, 118, 130, 134, 150, 154, 170, 174, 186, 190, 198, 206, 214, 218, 226, 234, 254, 258, 266, 270, 274, 286, 294, 310, 314, 318, 326, 338, 350, 354, 366, 370, 394, 398, 406, 410, 426
Offset: 1

Views

Author

Colin Barker, Jan 28 2017

Keywords

Comments

Numbers k such that the number of distinct prime divisors of k is equal to the number of distinct prime divisors of the pentagonal number k*(3*k-1)/2.

Crossrefs

Programs

  • Mathematica
    Select[Range[100], PrimeNu[#] == PrimeNu[#*(3*# - 1)/2] &] (* G. C. Greubel, Apr 23 2017 *)
  • PARI
    select(k->omega(k)==omega(k*(3*k-1)/2), vector(500, k, k))