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.

Showing 1-1 of 1 results.

A215152 Number of sphenic triples up to 10^n.

Original entry on oeis.org

0, 0, 0, 21, 445, 5457, 55576, 527138, 4824694, 43484124, 389855718
Offset: 1

Views

Author

Martin Renner, Aug 06 2012

Keywords

Comments

The sphenic triples {1309, 1310, 1311}, {1885, 1886, 1887}, ... are counted once at a time.

Crossrefs

Programs

  • PARI
    issemiprime(n) = factor(n)[,2]~ == [1,1];
    issphenic(n) = factor(n)[,2]~ == [1,1,1];
    list(nmax) = {my(c = 0, pow = 10, lim = 10^nmax/2+1); forstep(k = 1, lim, 2, if(issemiprime(k) && issphenic(2*k-1) && issphenic(2*k+1), c++); if(2*k-1 > pow, print1(c, ", "); pow *= 10));} \\ Amiram Eldar, Jan 15 2025

Extensions

a(8)-a(10) from Bert Dobbelaere, Jul 15 2023
a(11) from Amiram Eldar, Jan 15 2025
Showing 1-1 of 1 results.