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.

A376831 Numbers k such that sigma(k + sigma(k)) = sigma(k) + sigma(sigma(k)), where sigma = A000203.

Original entry on oeis.org

1986, 58920, 88092, 111276, 201588, 662160, 1103076, 1573536, 1671056, 1887900, 3172434, 4507152, 4575124, 8105188, 10971936, 42273728, 56886840
Offset: 1

Views

Author

Robert Israel, Oct 05 2024

Keywords

Examples

			a(3) =  88092 is a term because sigma(88092) = 222768, sigma(222768) = 812448 and sigma(88092 + 222768) = sigma(310860) = 1035216 = 222768 + 812448.
		

Crossrefs

Programs

  • Maple
    filter:= proc(k) uses numtheory; local s;
     s:= sigma(k);
     sigma(k+s) = s + sigma(s)
    end proc:
    select(filter, [$1..10^7]);