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.

A280645 Numbers k such that k^3 has an odd number of digits and the middle digit is 5.

Original entry on oeis.org

26, 43, 107, 109, 119, 122, 136, 139, 144, 150, 177, 179, 197, 203, 205, 472, 476, 494, 499, 501, 506, 510, 523, 537, 555, 561, 563, 568, 583, 603, 608, 629, 636, 649, 664, 694, 696, 726, 752, 753, 762, 766, 769, 780, 795, 796, 807, 814, 819, 826, 831, 845
Offset: 1

Views

Author

Lars Blomberg, Jan 07 2017

Keywords

Comments

The sequence of cubes starts: 17576, 79507, 1225043, 1295029, 1685159, 1815848, 2515456, 2685619, ...

Examples

			26^3 = 17(5)76, 150^3 = 337(5)000, 603^3 = 2192(5)6227
		

Crossrefs

See A279420-A279429 for a k^2 version.
See A279430-A279431 for a k^2 version in base 2.

Programs

  • Mathematica
    Select[Range[900],OddQ[IntegerLength[#^3]]&&IntegerDigits[#^3][[(IntegerLength[ #^3]+1)/2]]==5&] (* Harvey P. Dale, Aug 24 2017 *)

A280647 Numbers k such that k^3 has an odd number of digits and the middle digit is 7.

Original entry on oeis.org

31, 32, 105, 111, 128, 130, 149, 167, 173, 191, 192, 475, 483, 484, 491, 509, 524, 530, 534, 545, 546, 550, 556, 559, 584, 590, 592, 597, 614, 619, 624, 628, 637, 641, 665, 668, 692, 701, 725, 743, 750, 760, 781, 793, 809, 824, 836, 837, 843, 852, 861, 864
Offset: 1

Views

Author

Lars Blomberg, Jan 07 2017

Keywords

Comments

The sequence of cubes starts: 29791, 32768, 1157625, 1367631, 2097152, 2197000, 3307949, 4657463, ...

Examples

			31^3 = 29(7)91, 191^3 = 696(7)871, 619^3 = 2371(7)6659.
		

Crossrefs

See A279420-A279429 for a k^2 version.
See A279430-A279431 for a k^2 version in base 2.

Programs

  • Mathematica
    Select[Range[865], OddQ[len=Length[IntegerDigits[#^3]]]&&Part[IntegerDigits[#^3], (len+1)/2]==7 &] (* Stefano Spezia, Oct 03 2023 *)
Showing 1-2 of 2 results.