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.

A246854 Numbers n such that sigma(n+4) - sigma(n) = n + 4.

Original entry on oeis.org

1, 4, 26, 122, 146, 458, 746, 3746, 47612, 16065500, 388978292, 5313509288, 64278616556
Offset: 1

Views

Author

Jaroslav Krizek, Sep 05 2014

Keywords

Comments

Also numbers n such that A001065(n+4) = A000203(n). - Michel Marcus, Sep 06 2014
a(14) (if it exists) > 10^11. - Hiroaki Yamanouchi, Sep 10 2014
a(14) (if it exists) > 10^13. - Giovanni Resta, Jul 13 2015

Examples

			Number 26 is in sequence because sigma(26+4) - sigma(26) = 72 - 42 = 30 = 26 + 4.
		

Crossrefs

Programs

  • Magma
    [n:n in[1..10^7] | SumOfDivisors(n+4)-SumOfDivisors(n) eq n+4]
    
  • PARI
    for(n=1,10^7,if(sigma(n+4)-sigma(n)==n+4,print1(n,", "))) \\ Derek Orr, Sep 05 2014

Extensions

a(10)-a(13) from Hiroaki Yamanouchi, Sep 10 2014