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.

Previous Showing 11-13 of 13 results.

A328860 Numbers that are 4-imperfect.

Original entry on oeis.org

993803899780063855042560, 2028353759451110328141864960, 6476620014866676143312363520
Offset: 1

Views

Author

Michel Marcus, Feb 16 2020

Keywords

Crossrefs

Cf. A127724 (k-imperfect), A127725 (2-imperfect), A127726 (3-imperfect).
Cf. A309806 (the k values).
Cf. A206369 (the rho function).

Programs

  • PARI
    solveIMP(1, 4, 10^24)

A200758 Superimperfect numbers.

Original entry on oeis.org

2, 4, 8, 128, 32768, 2147483648
Offset: 1

Views

Author

Laszlo Toth, Nov 22 2011

Keywords

Comments

A number n is said to be superimperfect if 2*beta(beta(n)) = n, where beta is the multiplicative function defined by beta(p^e) = p^e - p^(e-1) + p^(e-2) - ... + (-1)^e for every prime power p^e. The function beta is called the alternating sum-of-divisors function. Here beta(n) is the absolute value of A061020(n). There are no other superimperfect numbers up to 10^7. The number 2^(2^k-1) is superimperfect if and only if k=1,2,3,4,5.

Crossrefs

Programs

  • PARI
    beta(n)=sumdiv(n,d,(-1)^bigomega(n/d)*d)
    for(n=1,1e8,if(2*beta(beta(n))==n,print1(n", "))) \\ Charles R Greathouse IV, Nov 22 2011
    
  • PARI
    ak(p,e)=my(s=1); for(i=1,e, s=s*p + (-1)^i); s
    beta(n)=my(f=factor(n)); prod(i=1,#f~, ak(f[i,1],f[i,2]))
    is(n)=my(b=beta(n)); 2*b-2 >= n && 2*beta(b)==n \\ Charles R Greathouse IV, Dec 27 2016

A309553 Imperfect numbers of the form 2^(2^k-1)*F_1*F_2*...*F_(k-1), where F is a Fermat number.

Original entry on oeis.org

40, 10880, 715816960, 3074457344902430720
Offset: 1

Views

Author

Jud McCranie, Aug 07 2019

Keywords

Comments

Numbers of this form are imperfect only for k = 2, 3, 4, 5.

Examples

			For k=2, 2^3*F_1 = 8*5 = 40, so 40 is in the sequence.
		

Crossrefs

Previous Showing 11-13 of 13 results.