login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A215015 Number of sphenic twins up to 10^n. 2
0, 0, 11, 337, 4206, 43330, 417479, 3917508, 36358375, 336046778, 3105465308, 28739218426 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The sphenic twin pairs {230, 231}, {285, 286}, ... are counted once at a time.
LINKS
Lucas A. Brown, Python program.
EXAMPLE
a(3) = 11 since there are 11 sphenic twins below 10^3 whose smaller members are 230, 285, 429, 434, 609, 645, 741, 805, 902, 969, 986.
MATHEMATICA
sphQ[n_]:= FactorInteger[n][[;; , 2]] == {1, 1, 1}; c = 0; p = 10; q1 = 0; seq = {}; Do[q2 = sphQ[k]; If[q1 && q2, c++]; If[k == p, AppendTo[seq, c]; p*=10]; q1 = q2, {k, 2, 10^5}]; seq (* Amiram Eldar, Dec 26 2019 *)
CROSSREFS
Sequence in context: A086923 A206532 A106717 * A219072 A280669 A195505
KEYWORD
nonn,more,hard
AUTHOR
Martin Renner, Aug 06 2012
EXTENSIONS
a(8)-a(10) from Amiram Eldar, Dec 26 2019
a(11)-a(12) from Lucas A. Brown, Feb 12 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 7 06:01 EDT 2024. Contains 374063 sequences. (Running on oeis4.)