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.

Showing 1-2 of 2 results.

A138613 a(n) = sigma_2(a(n-1)): sum of squares of divisors of a(n-1) with a(1)=2.

Original entry on oeis.org

2, 5, 26, 850, 943950, 1318281510000, 2755017380686402917800000, 10751241448828145947377163154256928532205365443200, 186653497320711305248493130820948403307540799528422902350199946673943964748877201760000000000000000
Offset: 1

Views

Author

Zak Seidov, May 14 2008

Keywords

Comments

Are all following terms divisible by 10?

Examples

			a(1)=2, divisors of 2: {1,2}, hence a(2)=1^2+2^2=5;
a(2)=5, divisors of 5: {1,5}, hence a(3)=1^2+5^2=26;
a(3)=26, divisors of 26: {1,2,13,26}, hence a(4)=1^2+2^2+13^2+26^2=850.
		

Crossrefs

Programs

  • Mathematica
    NestList[DivisorSigma[2, # ]&,2,9]

Formula

a(n>=1) = sigma_2(a(n-1)) = A001157(a(n-1)), a(1)=2.

A033766 Number of prime divisors (counted without multiplicity) of A138613(n).

Original entry on oeis.org

1, 1, 2, 3, 6, 8, 11, 20, 29, 47, 78, 129, 230, 400, 710, 1221
Offset: 1

Views

Author

N. J. A. Sloane, Sep 20 2008

Keywords

Comments

The old entry with this sequence number was a duplicate of A035162.

Crossrefs

Programs

  • Mathematica
    PrimeNu[NestList[DivisorSigma[2,#]&,2,12]] (* Harvey P. Dale, Aug 19 2017 *)

Extensions

a(10)-a(12) from Donovan Johnson, Nov 17 2008
a(13)-a(16) from Daniel Suteu, Dec 11 2019
Showing 1-2 of 2 results.