login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A008852 Numbers n such that n^2 and n have same last 2 digits. 2
0, 1, 25, 76, 100, 101, 125, 176, 200, 201, 225, 276, 300, 301, 325, 376, 400, 401, 425, 476, 500, 501, 525, 576, 600, 601, 625, 676, 700, 701, 725, 776, 800, 801, 825, 876, 900, 901, 925, 976, 1000, 1001, 1025, 1076, 1100, 1101, 1125, 1176, 1200, 1201 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
REFERENCES
L. E. Dickson, History of the Theory of Numbers. Carnegie Institute Public. 256, Washington, DC, Vol. 1, 1919; Vol. 2, 1920; Vol. 3, 1923, see vol. 1, p. 459.
LINKS
FORMULA
a(4n)=100*n, a(4n+1)=100*n+1, a(4n+2)=100*n+25, a(4n+3)=100*n+76. - Franklin T. Adams-Watters, Mar 13 2006
From G. C. Greubel, Sep 13 2019: (Start)
a(n) = a(n-1) + a(n-4) - a(n-5).
G.f.: x*(1 +24*x +51*x^2 +24*x^3)/((1-x)*(1-x^4)). (End)
MAPLE
for n to 2000 do if n^2 - n mod 100 = 0 then print(n); fi; od;
MATHEMATICA
Select[Range[1200], Mod[ #, 100] == Mod[ #^2, 100] &] (* Stefan Steinerberger, Apr 15 2006 *)
LinearRecurrence[{1, 0, 0, 1, -1}, {0, 1, 25, 76, 100}, 60] (* G. C. Greubel, Sep 13 2019 *)
PROG
(PARI) my(x='x+O('x^60)); concat([0], Vec(x*(1 +24*x +51*x^2 +24*x^3)/((1-x)*(1-x^4)))) \\ G. C. Greubel, Sep 13 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 60); [0] cat Coefficients(R!( x*(1 +24*x +51*x^2 +24*x^3)/((1-x)*(1-x^4)) )); // G. C. Greubel, Sep 13 2019
(Sage) [n for n in (0..1250) if mod(n, 100)==mod(n^2, 100)] # G. C. Greubel, Sep 13 2019
(GAP) a:=[0, 1, 25, 76, 100];; for n in [6..60] do a[n]:=a[n-1]+a[n-4]-a[n-5]; od; a; # G. C. Greubel, Sep 13 2019
CROSSREFS
Sequence in context: A053742 A123296 A118610 * A042226 A042224 A042228
KEYWORD
nonn,easy,base
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)