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.

A232167 Number of composite integers k less than 10^n such that lambda(k) divides 2k-2, where lambda is the Carmichael lambda function (A002322).

Original entry on oeis.org

3, 9, 16, 31, 68, 149, 314, 724, 1670, 4063
Offset: 1

Views

Author

Keywords

Comments

Conjecture: A055553(n)/a(n) has a limit strictly smaller than 1 as n tends to infinity.

Crossrefs

Programs

  • Mathematica
    For[k = 4; cnt = 0, True, k++, If[CompositeQ[k] && Divisible[2k-2, CarmichaelLambda[k]], cnt++]; If[IntegerQ[n = Log[10, k+1]], Print[n, " ", cnt]]]; (* Jean-François Alcover, Feb 16 2019 *)

Extensions

a(8)-a(10) from Giovanni Resta, Mar 03 2014