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-10 of 11 results. Next

A272673 Take list of squares that start with 1 (A045784) and omit the leading 1 and any leading zeros from what is left; if the number was a power of 10, replace it with 0.

Original entry on oeis.org

0, 6, 0, 21, 44, 69, 96, 24, 89, 156, 225, 296, 369, 444, 521, 600, 681, 764, 849, 936, 0, 201, 404, 609, 816, 1025, 1236, 1449, 1664, 1881, 2100, 2321, 2544, 2769, 2996, 3225, 3456, 3689, 3924, 4161, 4400, 4641, 4884, 5129, 5376, 5625, 5876
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Python
    A272673_list = [0] + [int(str(m**2)[1:]) if sum(int(d) for d in str(m**2)[1:]) != 1 else 0 for m in range(4,10**3) if str(m**2)[0] == '1'] # Chai Wah Wu, May 21 2016

A045788 Squares with initial digit '5'.

Original entry on oeis.org

529, 576, 5041, 5184, 5329, 5476, 5625, 5776, 5929, 50176, 50625, 51076, 51529, 51984, 52441, 52900, 53361, 53824, 54289, 54756, 55225, 55696, 56169, 56644, 57121, 57600, 58081, 58564, 59049, 59536, 501264, 502681, 504100, 505521
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    seq(op(map(`^`, [seq(i,i=ceil(sqrt(5*10^d))..floor(sqrt(6*10^d-1)))],2)),d=1..5); # Robert Israel, Sep 30 2016
  • Mathematica
    Flatten[Table[Range[Ceiling[Sqrt[5 10^n]],Floor[Sqrt[6 10^n]]]^2,{n,5}]]  (* Harvey P. Dale, Jun 15 2011 *)

Formula

a(n) = A045859(n)^2. - R. J. Mathar, Jul 23 2025

Extensions

Offset changed by Robert Israel, Sep 30 2016

A045789 Squares with initial digit '6'.

Original entry on oeis.org

64, 625, 676, 6084, 6241, 6400, 6561, 6724, 6889, 60025, 60516, 61009, 61504, 62001, 62500, 63001, 63504, 64009, 64516, 65025, 65536, 66049, 66564, 67081, 67600, 68121, 68644, 69169, 69696, 600625, 602176, 603729, 605284, 606841
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Flatten[Table[Range[Ceiling[Sqrt[6 10^n]],Floor[Sqrt[7 10^n]]]^2,{n,5}]] (* Harvey P. Dale, Jun 15 2011 *)

Formula

a(n) = A045860(n)^2. - Michel Marcus, Sep 04 2021

A045787 Squares with initial digit '4'.

Original entry on oeis.org

4, 49, 400, 441, 484, 4096, 4225, 4356, 4489, 4624, 4761, 4900, 40000, 40401, 40804, 41209, 41616, 42025, 42436, 42849, 43264, 43681, 44100, 44521, 44944, 45369, 45796, 46225, 46656, 47089, 47524, 47961, 48400, 48841, 49284, 49729, 400689
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Flatten[Table[Range[Ceiling[Sqrt[4 10^n]],Floor[Sqrt[5 10^n]]]^2, {n,5}]] (* Harvey P. Dale, Jun 15 2011 *)

Formula

a(n) = A045858(n)^2. - Michel Marcus, Sep 04 2021

A045785 Squares with initial digit '2'.

Original entry on oeis.org

25, 225, 256, 289, 2025, 2116, 2209, 2304, 2401, 2500, 2601, 2704, 2809, 2916, 20164, 20449, 20736, 21025, 21316, 21609, 21904, 22201, 22500, 22801, 23104, 23409, 23716, 24025, 24336, 24649, 24964, 25281, 25600, 25921, 26244, 26569
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Flatten[Table[Range[Ceiling[Sqrt[2 10^n]],Floor[Sqrt[3 10^n]]]^2,{n,4}]](* Harvey P. Dale, Jun 15 2011 *)

Formula

a(n) = A045856(n)^2. - Michel Marcus, Sep 04 2021

A045786 Squares with initial digit '3'.

Original entry on oeis.org

36, 324, 361, 3025, 3136, 3249, 3364, 3481, 3600, 3721, 3844, 3969, 30276, 30625, 30976, 31329, 31684, 32041, 32400, 32761, 33124, 33489, 33856, 34225, 34596, 34969, 35344, 35721, 36100, 36481, 36864, 37249, 37636, 38025, 38416, 38809
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[200]^2,First[IntegerDigits[#]]==3&]  (* Harvey P. Dale, Apr 21 2011 *)

Formula

a(n) = A045857(n)^2. - Michel Marcus, Sep 04 2021

A045791 Squares with initial digit '7'.

Original entry on oeis.org

729, 784, 7056, 7225, 7396, 7569, 7744, 7921, 70225, 70756, 71289, 71824, 72361, 72900, 73441, 73984, 74529, 75076, 75625, 76176, 76729, 77284, 77841, 78400, 78961, 79524, 700569, 702244, 703921, 705600, 707281, 708964, 710649, 712336
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Flatten[Table[Range[Ceiling[Sqrt[7 10^n]],Floor[Sqrt[8 10^n]]]^2,{n,5}]] (* Harvey P. Dale, Jun 15 2011 *)

Formula

a(n) = A045861(n)^2. - Michel Marcus, Sep 04 2021

A045792 Squares with initial digit '8'.

Original entry on oeis.org

81, 841, 8100, 8281, 8464, 8649, 8836, 80089, 80656, 81225, 81796, 82369, 82944, 83521, 84100, 84681, 85264, 85849, 86436, 87025, 87616, 88209, 88804, 89401, 801025, 802816, 804609, 806404, 808201, 810000, 811801, 813604, 815409, 817216
Offset: 1

Views

Author

Keywords

Crossrefs

Formula

a(n) = A045862(n)^2. - Michel Marcus, Sep 04 2021

Extensions

a(16) corrected by Sean A. Irvine, Mar 21 2021
Offset 1 from Michel Marcus, Mar 22 2021

A045793 Squares with initial digit '9'.

Original entry on oeis.org

9, 900, 961, 9025, 9216, 9409, 9604, 9801, 90000, 90601, 91204, 91809, 92416, 93025, 93636, 94249, 94864, 95481, 96100, 96721, 97344, 97969, 98596, 99225, 99856, 900601, 902500, 904401, 906304, 908209, 910116, 912025, 913936, 915849
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[1000]^2,First[IntegerDigits[#]]==9&] (* Harvey P. Dale, Apr 21 2015 *)

Formula

a(n) = A045863(n)^2. - Michel Marcus, Sep 04 2021

A045855 Numbers whose square has initial digit '1'.

Original entry on oeis.org

1, 4, 10, 11, 12, 13, 14, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[150],First[IntegerDigits[#^2]]==1&] (* Harvey P. Dale, Aug 28 2012 *)
Showing 1-10 of 11 results. Next