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.

A376849 Numbers k such that psi(k + psi(k)) = psi(k) + psi(psi(k)), where psi = A002322.

Original entry on oeis.org

2, 5, 10, 34, 80, 111, 196, 204, 222, 328, 351, 646, 654, 704, 837, 876, 935, 943, 969, 1053, 1100, 1140, 1220, 1224, 1372, 1408, 1526, 1824, 1864, 2368, 2496, 2511, 2715, 2816, 2842, 3159, 3294, 3528, 3648, 3672, 4332, 4473, 4600, 4736, 4992, 5500, 5632, 6325, 6528, 7296, 7412, 7512, 7533, 7832, 7959
Offset: 1

Views

Author

Robert Israel, Oct 06 2024

Keywords

Examples

			a(3) = 10 is a term because psi(10) = 4, psi(4) = 2, and psi(10 + 4) = psi(14) = 6 = 4 + 2.
		

Crossrefs

Programs

  • Maple
    filter:= proc(k) uses numtheory; local s;
     s:= lambda(k);
     lambda(k+s) = s + lambda(s)
    end proc:
    select(filter, [$1..10000]);
  • Mathematica
    Select[Range[8000], CarmichaelLambda[ #+CarmichaelLambda[#]] == CarmichaelLambda[#]+CarmichaelLambda[CarmichaelLambda[#]] &] (* Stefano Spezia, Oct 07 2024 *)