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

A181402 Total number of positive integers below 10^n requiring 7 positive cubes in their representation as sum of cubes.

Original entry on oeis.org

1, 10, 73, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121
Offset: 1

Views

Author

Martin Renner, Jan 28 2011

Keywords

Comments

An unpublished result of Deshouillers-Hennecart-Landreau, combined with Lemma 3 from Bertault, Ramaré, & Zimmermann implies that a(4)-a(34) are all 121. Probably a(n) = 121 for all n > 3. - Charles R Greathouse IV, Jan 23 2014

Crossrefs

Formula

A061439(n) + A181375(n) + A181377(n) + A181379(n) + A181381(n) + A181400(n) + a(n) + A181404(n) + A130130(n) = A002283(n).
Conjectured g.f.: x*(1+9*x+63*x^2+48*x^3)/(1-x). - Colin Barker, May 04 2012
Conjectured e.g.f.: 121*(exp(x) - 1) - 120*x - 111*x^2/2 - 8*x^3. - Stefano Spezia, May 21 2024

Extensions

a(5)-a(7) from Lars Blomberg, May 04 2011
a(8)-a(34) from Charles R Greathouse IV, Jan 23 2014

A373727 a(n) is the largest number that is the digit sum of an n-digit cube.

Original entry on oeis.org

8, 10, 18, 28, 28, 44, 46, 54, 63, 73, 80, 82, 98, 100, 109, 118, 125, 136, 144, 154, 154, 163, 172, 181, 190, 190, 199, 208, 217, 226, 235, 243, 253, 260, 262, 278
Offset: 1

Views

Author

Zhining Yang, Jun 15 2024

Keywords

Examples

			a(7) = 46 because 46 is the largest digital sum encountered among all 7-digit cubes (attained at 3 cubes: 3869893, 7880599, 8998912).
		

Crossrefs

Other powers: A371728, A373914, A374025, A373994.

Programs

  • C
    /* See links. */
  • Mathematica
    Table[Max@
      Map[Total@IntegerDigits[#^3] &,
       Range[Ceiling@CubeRoot[10^(n - 1)], CubeRoot[10^n - 1]]], {n, 15}]
  • Python
    from sympy import integer_nthroot
    def A373727(n): return max(sum(int(d) for d in str(m**3)) for m in range(1+integer_nthroot(10**(n-1)-1,3)[0],1+integer_nthroot(10**n-1,3)[0])) # Chai Wah Wu, Jun 26 2024
    

A083378 a(n) is the largest integer whose cube has n digits and first digit 1, except that a(2)=2.

Original entry on oeis.org

1, 2, 5, 12, 27, 58, 125, 271, 584, 1259, 2714, 5848, 12599, 27144, 58480, 125992, 271441, 584803, 1259921, 2714417, 5848035, 12599210, 27144176, 58480354, 125992104, 271441761, 584803547, 1259921049, 2714417616, 5848035476
Offset: 1

Views

Author

Werner S. Hürlimann (whurlimann(AT)bluewin.ch), Jun 05 2003

Keywords

Comments

a(2)=2 because there is no integer with cube between 10 and 19.
A generalization to arbitrary powers is found in Hürlimann, 2004.

Crossrefs

Programs

  • Mathematica
    Floor[Power[(10^Range[30])/5, (3)^-1]] (* Harvey P. Dale, Jul 15 2011 *)

Formula

a(n) = floor((10^n/5)^(1/3)).

Extensions

Edited by Don Reble, Nov 05 2005

A114323 Largest number whose 5th power has n digits.

Original entry on oeis.org

1, 2, 3, 6, 9, 15, 25, 39, 63, 99, 158, 251, 398, 630, 999, 1584, 2511, 3981, 6309, 9999, 15848, 25118, 39810, 63095, 99999, 158489, 251188, 398107, 630957, 999999, 1584893, 2511886, 3981071, 6309573, 9999999, 15848931, 25118864, 39810717
Offset: 1

Views

Author

Jonathan Vos Post, Feb 06 2006

Keywords

Comments

Note that the rightmost digit of n and n^5 are identical. This is to 5th powers as A061439 is to cubes and A049416 is to squares.

Examples

			a(3) = 3 because 3^5 = 243 which has 3 digits, while 4^5 = 1024 has 3 digits.
a(32) = 2511886 because 2511886^5 = 99999914106500508412371346814176 has 32 digits, while 2511887^5 = 100000113160107495177704749808207 has 33 digits.
		

Crossrefs

Programs

Formula

a(n) = ceiling((10^n)^(1/5)) - 1.

Extensions

Data corrected by Vincenzo Librandi, Oct 11 2011
Previous Showing 11-14 of 14 results.