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!)
A045804 4-ish numbers (end in 09, 41, 63, 87). 1
9, 41, 63, 87, 109, 141, 163, 187, 209, 241, 263, 287, 309, 341, 363, 387, 409, 441, 463, 487, 509, 541, 563, 587, 609, 641, 663, 687, 709, 741, 763, 787, 809, 841, 863, 887, 909, 941, 963, 987, 1009, 1041, 1063, 1087, 1109, 1141, 1163, 1187, 1209, 1241 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
G.f.: x*(9+32*x+22*x^2+24*x^3+13*x^4)/(1-x-x^4+x^5). - Colin Barker, Jan 23 2012
MATHEMATICA
Select[Range[1250], MemberQ[{9, 41, 63, 87}, Mod[#, 100]]&] (* Harvey P. Dale, Aug 01 2020 *)
PROG
(Haskell)
import Data.List (findIndices)
a045804 n = a045804_list !! (n-1)
a045804_list = findIndices (`elem` [9, 41, 63, 87]) $ cycle [0..99]
-- Reinhard Zumkeller, Jan 23 2012
CROSSREFS
Sequence in context: A120932 A034925 A159754 * A322055 A198943 A000451
KEYWORD
nonn,base,easy
AUTHOR
EXTENSIONS
More terms from Erich Friedman.
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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)