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

A025629 Numbers of form 6^i*10^j with i, j >= 0.

Original entry on oeis.org

1, 6, 10, 36, 60, 100, 216, 360, 600, 1000, 1296, 2160, 3600, 6000, 7776, 10000, 12960, 21600, 36000, 46656, 60000, 77760, 100000, 129600, 216000, 279936, 360000, 466560, 600000, 777600, 1000000, 1296000, 1679616, 2160000, 2799360, 3600000, 4665600
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    n = 10^6; Flatten[Table[6^i*10^j, {i, 0, Log[6, n]}, {j, 0, Log10[n/6^i]}]] // Sort (* Amiram Eldar, Sep 26 2020 *)
  • PARI
    list(lim)=my(v=List(), N); for(n=0, logint(lim\=1, 10), N=10^n; while(N<=lim, listput(v, N); N*=6)); Set(v) \\ Charles R Greathouse IV, Jan 10 2018

Formula

Sum_{n>=1} 1/a(n) = (6*10)/((6-1)*(10-1)) = 4/3. - Amiram Eldar, Sep 26 2020
a(n) ~ exp(sqrt(2*log(6)*log(10)*n)) / sqrt(60). - Vaclav Kotesovec, Sep 26 2020
a(n) = 6^A025663(n) * 10^A025688(n). - R. J. Mathar, Jul 06 2025

A108698 Numbers of the form (6^i)*(11^j), with i, j >= 0.

Original entry on oeis.org

1, 6, 11, 36, 66, 121, 216, 396, 726, 1296, 1331, 2376, 4356, 7776, 7986, 14256, 14641, 26136, 46656, 47916, 85536, 87846, 156816, 161051, 279936, 287496, 513216, 527076, 940896, 966306, 1679616, 1724976, 1771561, 3079296, 3162456
Offset: 1

Views

Author

Douglas Winston (douglas.winston(AT)srupc.com), Jun 19 2005

Keywords

Crossrefs

Programs

  • Haskell
    import Data.Set (singleton, deleteFindMin, insert)
    a108698 n = a108698_list !! (n-1)
    a108698_list = f $ singleton (1,0,0) where
       f s = y : f (insert (6 * y, i + 1, j) $ insert (11 * y, i, j + 1) s')
             where ((y, i, j), s') = deleteFindMin s
    -- Reinhard Zumkeller, May 15 2015
  • Mathematica
    n = 10^6; Flatten[Table[6^i*11^j, {i, 0, Log[6, n]}, {j, 0, Log[11, n/6^i]}]] // Sort (* Amiram Eldar, Oct 07 2020 *)

Formula

Sum_{n>=1} 1/a(n) = (6*11)/((6-1)*(11-1)) = 33/25. - Amiram Eldar, Oct 07 2020
a(n) ~ exp(sqrt(2*log(6)*log(11)*n)) / sqrt(66). - Vaclav Kotesovec, Oct 07 2020

A107710 Numbers of the form (6^i)*(13^j), with i, j >= 0.

Original entry on oeis.org

1, 6, 13, 36, 78, 169, 216, 468, 1014, 1296, 2197, 2808, 6084, 7776, 13182, 16848, 28561, 36504, 46656, 79092, 101088, 171366, 219024, 279936, 371293, 474552, 606528, 1028196, 1314144, 1679616, 2227758, 2847312, 3639168, 4826809, 6169176
Offset: 1

Views

Author

Douglas Winston (douglas.winston(AT)srupc.com), Jun 10 2005

Keywords

Crossrefs

Programs

  • Mathematica
    n = 10^6; Flatten[Table[6^i*13^j, {i, 0, Log[6, n]}, {j, 0, Log[13, n/6^i]}]] // Sort (* Amiram Eldar, Sep 25 2020 *)

Formula

Sum_{n>=1} 1/a(n) = (6*13)/((6-1)*(13-1)) = 13/10. - Amiram Eldar, Sep 25 2020
a(n) ~ exp(sqrt(2*log(6)*log(13)*n)) / sqrt(78). - Vaclav Kotesovec, Sep 25 2020

A025614 Numbers of form 3^i*6^j, with i, j >= 0.

Original entry on oeis.org

1, 3, 6, 9, 18, 27, 36, 54, 81, 108, 162, 216, 243, 324, 486, 648, 729, 972, 1296, 1458, 1944, 2187, 2916, 3888, 4374, 5832, 6561, 7776, 8748, 11664, 13122, 17496, 19683, 23328, 26244, 34992, 39366, 46656, 52488, 59049, 69984, 78732, 104976, 118098
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    n = 10^6; Flatten[Table[3^i*6^j, {i, 0, Log[3, n]}, {j, 0, Log[6, n/3^i]}]] // Sort (* Amiram Eldar, Sep 26 2020 *)

Formula

Sum_{n>=1} 1/a(n) = (3*6)/((3-1)*(6-1)) = 9/5. - Amiram Eldar, Sep 26 2020
a(n) ~ exp(sqrt(2*log(3)*log(6)*n)) / sqrt(18). - Vaclav Kotesovec, Sep 26 2020
a(n) = 3^A025641(n) *6^A025657(n). - R. J. Mathar, Jul 06 2025

A025660 Exponent of 6 (value of i) in n-th number of form 6^i*7^j.

Original entry on oeis.org

0, 1, 0, 2, 1, 0, 3, 2, 1, 0, 4, 3, 2, 1, 0, 5, 4, 3, 2, 1, 0, 6, 5, 4, 3, 2, 1, 0, 7, 6, 5, 4, 3, 2, 1, 0, 8, 7, 6, 5, 4, 3, 2, 1, 0, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 13, 0, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A025626.

A025668 Exponent of 7 (value of j) in n-th number of form 6^i*7^j.

Original entry on oeis.org

0, 0, 1, 0, 1, 2, 0, 1, 2, 3, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 7, 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A025626.
Showing 1-6 of 6 results.