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.

A329238 Carmichael quotients to base 2: a(n) = (2^lambda(2*n-1)-1)/(2*n-1), where lambda is the Carmichael lambda function (A002322).

Original entry on oeis.org

1, 1, 3, 9, 7, 93, 315, 1, 3855, 13797, 3, 182361, 41943, 9709, 9256395, 34636833, 31, 117, 1857283155, 105, 26817356775, 102280151421, 91, 1497207322929, 89756051247, 1285, 84973577874915, 19065, 4599, 4885260612740877, 18900352534538475, 1, 63, 1101298153654301589
Offset: 1

Views

Author

Amiram Eldar, Nov 08 2019

Keywords

Examples

			a(3) = (2^lambda(2*3 - 1) - 1)/(2*3 - 1) = (2^lambda(5) - 1)/5 = (2^4 - 1)/5 = 3.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := (2^CarmichaelLambda[n] - 1)/n; Table[a[n], {n, 1, 67, 2}]