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.

A069822 Numbers k for which there is at least one x < k such that sigma(x) = sigma(k).

Original entry on oeis.org

11, 15, 17, 23, 25, 26, 31, 35, 38, 39, 41, 46, 47, 51, 53, 55, 56, 58, 59, 62, 65, 69, 70, 71, 75, 77, 78, 79, 82, 83, 87, 89, 92, 94, 95, 97, 103, 107, 110, 113, 115, 116, 118, 119, 122, 123, 124, 125, 127, 130, 131, 135, 139, 140, 141, 142, 143, 145, 151, 153
Offset: 1

Views

Author

Benoit Cloitre, Apr 28 2002

Keywords

Comments

Numbers k for which A263025(k) > 1. - Antti Karttunen, Dec 08 2017

Crossrefs

Cf. A296087 (a subsequence).

Programs

  • PARI
    for(s=1,200,if(prod(i=1,s-1, sigma(i)-sigma(s))==0,print1(s,",")))
    
  • PARI
    for(n=1,16384,y=0;s=sigma(n);for(k=1,(n-1),if(sigma(k)==s,y=1;break)); if(y,i++;write("b069822.txt", i," ", n))); \\ Antti Karttunen, Dec 08 2017
    
  • PARI
    is(k) = invsigmaMin(sigma(k)) < k; \\ Amiram Eldar, Dec 20 2024, using Max Alekseyev's invphi.gp