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.

A064115 Numbers k such that k and k+1 have the same sum of non-unitary divisors (A048146), for A048146(k) > 0.

Original entry on oeis.org

188, 1484, 3915, 14750, 19196, 20150, 79947, 164996, 190484, 219375, 253827, 639387, 718011, 835515, 1172374, 1380483, 2026323, 2064249, 3611708, 5507540, 6128108, 6374403, 6872984, 10073132, 10558250, 11360547, 12770450, 13000635, 14458364, 16366292, 19127907
Offset: 1

Views

Author

Jason Earls, Sep 09 2001

Keywords

Comments

The sequence snud(a(n)) = snud(1 + a(n)) is A103846(n). - Emeric Deutsch, Feb 17 2005

Examples

			snud(1484) = 864, snud(1485) = 864.
		

Crossrefs

Programs

  • Mathematica
    nusigma[1]=0; nusigma[n_] := DivisorSigma[1, n] - Times @@ (1 + Power @@@ FactorInteger[n]); seq={}; s1=0; Do[s2=nusigma[n]; If[s1>0 && s2==s1, AppendTo[seq, n-1]]; s1=s2, {n, 1, 10^6}]; seq (* Amiram Eldar, Jun 10 2019 *)
  • PARI
    snud(n)= { sumdiv(n, d, if(gcd(d, n/d)!=1, d)) }
    { n=0; for (m=1, 10^9, s=snud(m); if (s>0 && s==snud(m + 1), write("b064115.txt", n++, " ", m); if (n==30, break)) ) } \\ Harry J. Smith, Sep 07 2009

Extensions

More terms from Emeric Deutsch, Feb 17 2005