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-4 of 4 results.

A134382 a(n) is the smallest number k larger than a(n-1) such that n*d(k)*sopf(k)=sigma(k), where d is the number of divisors (A000005) and sopf the sum of prime factors without repetition (A008472).

Original entry on oeis.org

20, 140, 464, 660, 1276, 1365, 2204, 2508, 2805, 2907, 5590, 5698, 5742, 6006, 7395, 8680, 14645, 15052, 18875, 19170, 19740, 23871, 34579, 34804, 35164, 35244, 35934, 38121, 106805, 114953, 261536, 503082
Offset: 1

Views

Author

Enoch Haga, Oct 23 2007

Keywords

Comments

Sequence suggested by Puzzle 419 in Carlos Rivera's The Prime Puzzles & Problems Connection.
For n=33, the search for terms k that satisfy 33*d(k)*sopf(k)=sigma(k), without being greater than a(32), gives 21070, 25585, 30702, 36120, 41710, 49256, 52269, 68906, 74692, 92785, 95702, 111342, 117626, 383086 with no other terms up to 10^9. So this sequence might well be complete. - Michel Marcus, Oct 02 2019
I confirm that the solutions for n=33 listed above are complete, thus the sequence stops at n=32. - Max Alekseyev, Sep 18 2024

Crossrefs

Subsequence of A070222. - R. J. Mathar, Feb 05 2010

Programs

  • Maple
    A008472 := proc(n) local divs,i ; if n = 1 then 0; else divs := ifactors(n)[2] ; add( op(1,i),i=divs) ; fi ; end: A134382 := proc(n) option remember ; local k,kmin ; if n = 1 then kmin := 1 ; else kmin := procname(n-1)+1 ; fi ; for k from kmin do if numtheory[sigma](k) = n* numtheory[tau](k)*A008472(k) then RETURN(k) ; fi ; od: end: for n from 1 to 30 do print( A134382(n)) ; od: # R. J. Mathar, Nov 16 2007, Jun 24 2009
  • Mathematica
    sopf[1] = 0; sopf[n_] := Total[FactorInteger[n][[All, 1]]]; a[n_] := a[n] = For[k = If[n == 1, 1, a[n-1] + 1], True, k++, If[DivisorSigma[1, k] == n*DivisorSigma[0, k]*sopf[k], Return[k]]]; Table[Print[a[n]]; a[n], {n, 1, 32}] (* Jean-François Alcover, Sep 12 2013 *)
  • PARI
    lista(nn) = {lasta = 2; for (n=1, nn, k = lasta; while ((f = factor(k)) && (n*numdiv(k)*sum(j=1,#f~,f[j,1]) != sigma(k)), k++); print1(k, ", "); lasta = k;);} \\ Michel Marcus, Feb 25 2016

Formula

a(n) > a(n-1): n*A000005(a(n))*A008472(a(n)) = A000203(a(n)). - R. J. Mathar, Nov 16 2007, Jun 24 2009

Extensions

Edited by R. J. Mathar, Nov 16 2007
A-number in formula and Maple program corrected by R. J. Mathar, Jun 24 2009
a(32) from R. J. Mathar, Feb 05 2010
full,fini keywords added by Max Alekseyev, Sep 18 2024

A134384 Values of sopf(n) associated with A134382.

Original entry on oeis.org

7, 14, 31, 21, 42, 28, 50, 35, 36, 39, 63, 57, 45, 36, 54, 45, 135, 126, 156, 81, 64, 185, 380, 133, 210, 105, 171, 231, 567, 966, 756, 1495
Offset: 1

Views

Author

Enoch Haga, Oct 23 2007

Keywords

Crossrefs

Formula

a(n) = A008472(A134382(n)). - Omar E. Pol, Mar 27 2008

Extensions

Corrected by Omar E. Pol, Mar 27 2008
New values verified by N. J. A. Sloane, May 28 2008
a(31)-a(32) calculated from the data at A134382 by Amiram Eldar, Feb 16 2020
Keywords fini,full added by Max Alekseyev, Sep 18 2024

A134385 Values of product d(n)*sopf(n) associated with A134382.

Original entry on oeis.org

42, 168, 310, 504, 504, 448, 600, 840, 576, 468, 1008, 912, 1080, 1152, 864, 1440, 1080, 1512, 1248, 2592, 3072, 1480, 1520, 3192, 2520, 3780, 2736, 1848, 4536, 3864, 18144, 35880
Offset: 1

Views

Author

Enoch Haga, Oct 23 2007

Keywords

Crossrefs

Formula

a(n) = A134383(n)*A134384(n) = A000005(A134382(n))*A008472(A134382(n)). - Omar E. Pol, Mar 27 2008

Extensions

Corrected by Omar E. Pol, Mar 27 2008
New values verified by N. J. A. Sloane, May 28 2008
a(31)-a(32) calculated from the data at A134382 by Amiram Eldar, Feb 16 2020
Keywords fini,full added by Max Alekseyev, Sep 18 2024

A134386 Values of n*d(k)*sopf(k) associated with A134382.

Original entry on oeis.org

42, 336, 930, 2016, 2520, 2688, 4200, 6720, 5184, 4680, 11088, 10944, 14040, 16128, 12960, 23040, 18360, 27216, 23712, 51840, 64512, 32560, 34960, 76608, 63000, 98280, 73872, 51744, 131544, 115920, 562464, 1148160
Offset: 1

Views

Author

Enoch Haga, Oct 23 2007

Keywords

Crossrefs

Programs

Formula

a(n) = sigma(A134382(n)) = A000203(A134382(n)). - Jens Kruse Andersen, May 03 2008

Extensions

Corrected by Omar E. Pol, Mar 27 2008
Edited and values confirmed by N. J. A. Sloane, May 28 2008
a(31)-a(32) calculated from the data at A134382 by Amiram Eldar, Feb 16 2020
Keywords fini,full added by Max Alekseyev, Sep 18 2024
Showing 1-4 of 4 results.