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!)
A329542 a(n) is the first occurrence of a composite number whose factorization without exponents contains exactly n circular loops (i.e., loops in digits 0, 6, 8, 9) on each side of the equals sign. 0

%I #16 Dec 02 2019 14:32:21

%S 76,166,801,8067,38804,88181,586668,3680818,6899086,40888802,

%T 168888169,868862887,884888909,4088888618,6898889086,40888888618,

%U 108088888891,864888888892,1928888888668,16888888880873,8848888888909,40888888888802,120888888888896,968888888886830

%N a(n) is the first occurrence of a composite number whose factorization without exponents contains exactly n circular loops (i.e., loops in digits 0, 6, 8, 9) on each side of the equals sign.

%H Chris K. Caldwell and G. L. Honaker, Jr., <a href="https://primes.utm.edu/curios/page.php?curio_id=36881">Prime Curios! 76</a>

%e a(1) = 76 because 76 = 2*2*19, and there is exactly one loop on each side of the equals sign.

%e a(2) = 166 because 166 = 2*83, and there are exactly two loops on each side of the equals sign, etc. Note that '8' contains two loops.

%t cntLo[n_] := Plus @@ ({1,0,0,0,0,0,1,0,2,1}[[IntegerDigits[n] + 1]]); cntF[n_] := Plus @@ (cntLo /@ First /@ FactorInteger[n]); a[n_] := Block[{k=1}, While[ cntLo[k] != n || cntF[k] != n || PrimeQ[k], k++]; k]; Array[a, 8] (* _Giovanni Resta_, Nov 18 2019 *)

%Y Cf. A000040, A001743.

%K nonn,base

%O 1,1

%A _G. L. Honaker, Jr._, Nov 16 2019

%E a(5)-a(10) from Chuck Gaydos

%E a(11)-a(24) from _Giovanni Resta_, Nov 18 2019

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 April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)